PointByCoordinates
A single point defined only by a coordinate set with an optional bearing direction
pointCoordinates objectrequired
A pair of planar coordinates defining the geodetic position of a single point using a defined Coordinate Reference System.
Code referencing a specific Coordinate Reference System in the EPSG (European Petroleum Survey Group) register
Possible values: Value must match regular expression ^EPSG:\d{4}$
EPSG:3857X coordinate in the defined Coordinate Referencing System indicated by the EPSG code
Y coordinate in the defined Coordinate Referencing System indicated by the EPSG code
heightCoordinates object[]
Height coordinate
Possible values: <= 3
List of coded values for height types, as defined in GML.
ellipsoidalHeight: Value measured vertically above the reference ellipsoidgravityRelatedHeight: Height type corresponding a value measured along direction of gravity above the reference geoid i.e. equipotential surface of the Earth's gravity field which globally approximates mean sea level.relativeHeight: Height type corresponding to value measured vertically above the ground level at this point.
Possible values: [ellipsoidalHeight, gravityRelatedHeight, relativeHeight]
Value in defined unit (metres) for the height measured vertically at to the planar coordinates the point corresponding. Note alteration from DATEXII definition.
A bearing at the point measured in degrees (0 - 359). Unless otherwise specified the reference direction corresponding to 0 degrees is North.
Possible values: >= 0 and <= 359
{
"pointCoordinates": {
"epsgCode": "EPSG:3857",
"x": 0,
"y": 0,
"heightCoordinates": [
{
"heightType": "ellipsoidalHeight",
"heightValue": "string"
}
]
},
"bearing": 0
}