GeoJSON Splitter
Split GeoJSON Feature Collection
Upload a GeoJSON file containing a FeatureCollection and split it into individual features that can be copied to the clipboard.
Example format:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": { "name": "Feature 1" },
"geometry": { "type": "Point", "coordinates": [0, 0] }
},
...
]
}