GeoJSON

GeoJSON
Dateiendung: .geojson
MIME-Type: application/geo+json
Erstveröffentlichung: Juni 2008
Art: GIS-Datenformat
Erweitert von: JSON
Standard(s): RFC 7946[1]
geojson.org

GeoJSON ist ein offenes Format, um geografische Daten nach der Simple-Feature-Access-Spezifikation zu repräsentieren. Dafür wird die JavaScript Object Notation verwendet.

Geschichte

Die Entwicklung des GeoJSON-Formats begann im März 2007 durch eine Gruppe von Entwicklern über eine Mailingliste.[2] Im Juni 2008 wurde die Formatspezifikation verabschiedet.

Im April 2015 gründete die Internet Engineering Task Force eine Geographic JSON working group.[3] Diese veröffentlichte GeoJSON als RFC 7946 im August 2016.[1]

Geometrien

Zu den unterstützten Geometrien zählen Punkte (beispielsweise Adressen und Point of Interest), Linien (beispielsweise Straßen und Flüsse), Polygone (beispielsweise Ländergrenzen und Landnutzungen) sowie mehrteilige Typen dieser Geometrien.

Einfache Geometrien
Typ Beispiel
Point

(Punkt)

{ "type": "Point",
    "coordinates": [30, 10]
}
LineString

(Linie)

{ "type": "LineString",
    "coordinates": [
        [30, 10], [10, 30], [40, 40]
    ]
}
Polygon
{ "type": "Polygon",
    "coordinates": [
        [[30, 10], [40, 40], [20, 40], [10, 20], [30, 10]]
    ]
}
{ "type": "Polygon",
    "coordinates": [
        [[35, 10], [45, 45], [15, 40], [10, 20], [35, 10]],
        [[20, 30], [35, 35], [30, 20], [20, 30]]
    ]
}
Mehrteilige Geometrien
Typ Beispiel
MultiPoint
{ "type": "MultiPoint",
    "coordinates": [
        [10, 40], [40, 30], [20, 20], [30, 10]
    ]
}
MultiLineString
{ "type": "MultiLineString",
    "coordinates": [
        [[10, 10], [20, 20], [10, 40]],
        [[40, 40], [30, 30], [40, 20], [30, 10]]
    ]
}
MultiPolygon
{ "type": "MultiPolygon",
    "coordinates": [
        [
            [[30, 20], [45, 40], [10, 40], [30, 20]]
        ],
        [
            [[15, 5], [40, 10], [10, 20], [5, 10], [15, 5]]
        ]
    ]
}
{ "type": "MultiPolygon",
    "coordinates": [
        [
            [[40, 40], [20, 45], [45, 30], [40, 40]]
        ],
        [
            [[20, 35], [10, 30], [10, 10], [30, 5], [45, 20], [20, 35]],
            [[30, 20], [20, 15], [20, 25], [30, 20]]
        ]
    ]
}

Beispiel

{ "type": "FeatureCollection",
  "features": [
    { "type": "Feature",
      "geometry": {"type": "Point", "coordinates": [102.0, 0.5]},
      "properties": {"prop0": "value0"}
    },
    { "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
        ]
      },
      "properties": {
        "prop0": "value0",
        "prop1": 0.0
      }
    },
    { "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
            [100.0, 1.0], [100.0, 0.0] ]
        ]
      },
      "properties": {
        "prop0": "value0",
        "prop1": {"this": "that"}
      }
    }
  ]
}

Softwareunterstützung

GeoJSON wird von einer Vielzahl von freien Geoinformationssystemen und Mapping-Software unterstützt, beispielsweise OpenLayers,[4] Leaflet,[5] MapLibre GL JS,[6] MapServer,[7] GeoServer,[8] GeoDjango,[9] PointPlot,[10] GDAL,[11] QGIS,[12] und CartoDB.[13] Des Weiteren kann GeoJSON in PostGIS[14][15] und Mapnik (Standard-Renderer von OpenStreetMap)[16][17] verwendet werden, weil diese beiden Softwarepakete auf die GDAL-Bibliothek zurückgreifen.

Bing Maps, Yahoo und Google Maps verwenden/unterstützen GeoJSON in deren Programmierschnittstellen.

GitHub zeigt GeoJSON-Dateien auf einer interaktiven Karte an.[18]

GeoJSON.io ist ein interaktiver GeoJSON-Editor in Form einer Webanwendung.[19]

Siehe auch

  • geojson.org
  • The GeoJSON Format Specification. geojson.org
  • geojson.io – Werkzeug zum interaktiven Erstellen von GeoJSON-Dateien
  • Christopher Andrews: Emerging Technology: AJAX and GeoJSON. 18. September 2007, ehemals im Original (nicht mehr online verfügbar); abgerufen am 26. Januar 2024 (englisch).@1@2Vorlage:Toter Link/www.directionsmag.com (Seite nicht mehr abrufbar. Suche im Internet Archive)
  • GeoWebGuru: Technical Overview: GeoJSON. 16. Februar 2009, archiviert vom Original am 12. August 2016; abgerufen am 2. Juli 2023 (englisch).

Einzelnachweise

  1. a b RFC: 7946 – The GeoJSON Format. August 2016 (englisch).
  2. March 2007 Archives by thread
  3. Geographic JSON (geojson). In: ietf.org. Abgerufen am 12. August 2016.
  4. GeoJSON. In: openlayers.org. Abgerufen am 12. August 2016.
  5. Documentation – Leaflet – a JavaScript library for interactive maps. In: leafletjs.com. Abgerufen am 12. August 2016.
  6. Sources. In: maplibre.org. Abgerufen am 14. Mai 2023.
  7. Template-Driven Output – MapServer 7.0.1 documentation. In: mapserver.org. Abgerufen am 12. August 2016.
  8. OGR based WFS Output Format – GeoServer 2.10.x User Manual. In: docs.geoserver.org. Abgerufen am 12. August 2016.
  9. GeoJSON Serializer. In: docs.djangoproject.com. Abgerufen am 12. August 2016.
  10. PointPlot. In: ndm.io. Archiviert vom Original (nicht mehr online verfügbar) am 2. Juni 2016; abgerufen am 12. August 2016.  Info: Der Archivlink wurde automatisch eingesetzt und noch nicht geprüft. Bitte prüfe Original- und Archivlink gemäß Anleitung und entferne dann diesen Hinweis.@1@2Vorlage:Webachiv/IABot/www.ndm.io
  11. GeoJSON. In: gdal.org. Abgerufen am 12. August 2016.
  12. 14.1. Öffnen von Daten. In: QGIS Dokumentation docs.qgis.org. Abgerufen am 7. Juli 2022.
  13. CARTO Documentation – CARTO Documentation. In: developers.cartodb.com. Archiviert vom Original am 27. Juni 2014; abgerufen am 12. August 2016.
  14. ST_GeomFromGeoJSON. In: postgis.net. Abgerufen am 12. August 2016.
  15. ST_AsGeoJSON. In: postgis.net. Abgerufen am 12. August 2016.
  16. GeoJSON-Plugin von Mapnik auf GitHub
  17. osmwiki:Mapnik
  18. There’s a map for that. 13. Juni 2013, abgerufen am 12. August 2016.
  19. geojson.io

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.