How to read geojson data?
in
Core Library Questions
•
19 days ago
Hi, is there a standard library to process Geojson data in processing such as the data for Urban Data Challenge :
https://github.com/swissnexSF/Urban-Data-Challenge/tree/master/public-transportation/zurich/geo
The geojson data is like:
Thanks!
https://github.com/swissnexSF/Urban-Data-Challenge/tree/master/public-transportation/zurich/geo
The geojson data is like:
- {
- "type": "FeatureCollection",
- "features": [
- { "type": "Feature", "properties": { "stopId": 2735, "stopNumber": 4, "stopNameShort": "ZOOF", "stopName": "Zürich, Zoo\/Forrenweid" }, "geometry": { "type": "Point", "coordinates": [ 8.577939444444439, 47.380353055555602 ] } }
- ,
- { "type": "Feature", "properties": { "stopId": 2735, "stopNumber": 4, "stopNameShort": "ZOOF", "stopName": "Zürich, Zoo\/Forrenweid" }, "geometry": { "type": "Point", "coordinates": [ 8.57826333333333, 47.3806377777778 ] } }
- ,
- { "type": "Feature", "properties": { "stopId": 2375, "stopNumber": 2814, "stopNameShort": "WALD", "stopName": "Zürich, Waldgarten" }, "geometry": { "type": "Point", "coordinates": [ 8.557161666666669, 47.403754444444402 ] } }
- ]
- }
Thanks!
1