Skip to content

Latest commit

 

History

History
80 lines (56 loc) · 1.8 KB

File metadata and controls

80 lines (56 loc) · 1.8 KB

GeoPoint3D

Generally

Property Value
Description An simplified geo point with lat, lon and alt (WGS84).
Namespace DoofesZeug.Entities.Science.Geographically.Coordinates
BaseClass Entity
SourceCode GeoPoint3D.cs

Properties

Declared

Name Type Read Write DefaultValue
Latitude Latitude NULL
Longitude Longitude NULL
Altitude Altitude NULL

Inherited

Name Type Read Write DefaultValue

UML Diagram

GeoPoint3D.png


Code Example

An example or code snippet follows soon.

Console Example

┌───────────┬────────────────────┐
│ Property  │ Value              │
├───────────┼────────────────────┤
│ Latitude  │ 49.759646524258756 │
│ Longitude │ 6.644282639342397  │
│ Altitude  │ 1234               │
└───────────┴────────────────────┘

JSON Example

{
  "Latitude": 49.759646524258756,
  "Longitude": 6.644282639342397,
  "Altitude": 1234
}

YAML Example

Latitude: {}
Longitude: {}
Altitude: {}