GeoJSON

GeoJSON is a format for encoding various geographic data structures.

{
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [125.6, 10.1]
  },
  "properties": {
    "name": "Dinagat Islands"
  }
}

GeoJSON supports the following geometry types: Point, LineString,
Polygon, MultiPoint, MultiLineStringAnd MultiPolygon. are geometric objects with additional properties Feature objects. are implied by the set of features FeatureCollection objects.

In 2015, the Internet Engineering Task Force (IETF), together with the original specification authors, formed a GeoJSON WG to standardize GeoJSON. RFC 7946 was published in August 2016 and is the new standard specification of the GeoJSON format, replacing the 2008 GeoJSON specification.



<a href

Leave a Comment