-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make Geokoordinaten/Laengen+Breitegrade nullable; Add NoerdlicheBreite
, OestlicheLaenge
, Zone
, Nordwert
and Ostwert
#597
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bist du sicher , dass man (nördliche Länge+östliche Breite) und (Breiten- +und Längengrad) nicht ineinander umrechnen kann? Also dass das eigentlich verschiedene Darstellungsformen der selben werte sind ?
BO4E/COM/Geokoordinaten.cs
Outdated
public decimal? Laengengrad { get; set; } | ||
|
||
/// <summary> Gibt die Östliche Koordinate eines entsprechenden Ortes an.</summary> | ||
[JsonProperty(PropertyName = "oestlichelaenge")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kannst du bitte die json property namens konsequent loser camel case machen?
BO4E/COM/Geokoordinaten.cs
Outdated
public decimal? Laengengrad { get; set; } | ||
|
||
/// <summary> Gibt die Östliche Koordinate eines entsprechenden Ortes an.</summary> | ||
[JsonProperty(PropertyName = "oestlichelaenge")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kannst du bitte die json property namens konsequent loser camel case machen?
BO4E/COM/Geokoordinaten.cs
Outdated
[JsonProperty(PropertyName = "noerdlichebreite")] | ||
[JsonPropertyName("noerdlichebreite")] | ||
[ProtoMember(6)] | ||
public decimal? noerdlichebreite { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Und die property Name konsequent UpperCamelCase
BO4E/COM/Geokoordinaten.cs
Outdated
[JsonProperty(PropertyName = "ostwert")] | ||
[JsonPropertyName("ostwert")] | ||
[ProtoMember(9)] | ||
public string? oestwert { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ost, nicht oest.
Guten Morgen @hf-kklein , ja man kann das alles von Längen und Breiten grad ineinander umrechnen, aber muss dann dann in das utm system umrechenen |
gut. dann machen wir das pragmatisch erstmal so. kommentierst du dann im docstring, dass man entweder die einen oder die anderen Wertepaare angeben muss und machst klar, dass wir da keine Umrechnung durchführen, auch wenn man die als user vllt erwarten würde? Ansonsten halt noch die Property-Names gerade ziehen. |
BO4E/COM/Geokoordinaten.cs
Outdated
/// Diese Komponente liefert die Geokoordinaten für einen Ort. | ||
/// Hierbei kann es sich um Breiten- und Längengrad oder um UTM-Koordinaten handeln. Diese lassen sich zwar ineinander | ||
/// umrechnen, jedoch sind die UTM-Koordinaten genauer, benötigen aber auch mehr Werte. | ||
/// Ein Mapping ist nicht vorgesehen, da die UTM-Koordinaten in der Regel nur von Fachleuten verwendet werden. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sind wir etwa keine fachleute :D?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Irgendwo Ja und irgendwo nein ^^
78b9757
NoerdlicheBreite
, OestlicheLaenge
, Zone
, Nordwert
and Ostwert
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
passt für mich.
No description provided.