mark-p-thomas : GeoJSON Position

These terms adhere to RFC 7946 - The GeoJSON Format.

Sections

Definition

A Position is the fundamental geometry construct. The "coordinates" member of a Geometry object is composed of either:

A Position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, or easting and northing, precisely in that order and using decimal numbers.

Altitude or elevation MAY be included as an optional third element.

Raw GeoJSON

 [-100.0, 62.5, 3245.0]

With a schema below:

[
  longitude (column/x-coord), 
  latitude (row/y-coord), 
  (optional) altitude/elevation (meters)
]