How can I read a GeoJSON format file?
Afficher commentaires plus anciens
Hello! I need to extract energy data for my research and the file format is GeoJSON ( here is a link ).
My issue:
I can't find any matlab function that can help me read such file format. Can someone please help me? Thanks, Maurel
Réponses (1)
See this example:
Note that there are plenty of libs for parsing JSON files if you have them on disk already, e.g. this one. After add it to the path:
>> data=loadjson('4.5_month.geojson.json')
data =
struct with fields:
type: 'FeatureCollection'
metadata: [1×1 struct]
features: {1×389 cell}
bbox: [-179.9476 -61.7431 4.3800 179.4478 79.5651 614.2600]
Catégories
En savoir plus sur JSON Format dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!