GeoSpatial - GeoJson

Data System Architecture

About

GeoJSON is a formalized syntax of JSON objects, optimized for storing geodata.

All GeoJSON object are JSON objects, and all JSON objects are JavaScript objects.

The format is supported on GitHub for rendering.

Example

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [ 150.1282427, -24.471803 ]
            },
            "properties": {
                "type": "town"
            }
        }
    ]
}

where:

  • coordinates: longitude is always listed before latitude

Blog

Documentation / Reference





Discover More
Data System Architecture
Spatial - Geo (Map|Chart) - Topology

Spatial or geographical data: point, line, polygon, multi-point, multi-line, etc. Spatial data represents the essential location characteristics of real or conceptual objects as those...



Share this page:
Follow us:
Task Runner