GeoJSON to CSV - Extract Geographic Data
Convert GeoJSON to CSV for GIS analysis and spreadsheets. Extract coordinates, properties, geometry data. Client-side, no uploads.
Input GeoJSON
Drop GeoJSON file here or click to browse
Output CSV
Conversion Stats:
Sample GeoJSON
Try converting this sample FeatureCollection with points of interest:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "Eiffel Tower",
"city": "Paris",
"country": "France",
"type": "monument",
"height_m": 330
},
"geometry": {
"type": "Point",
"coordinates": [2.2945, 48.8584]
}
},
{
"type": "Feature",
"properties": {
"name": "Statue of Liberty",
"city": "New York",
"country": "USA",
"type": "monument",
"height_m": 93
},
"geometry": {
"type": "Point",
"coordinates": [-74.0445, 40.6892]
}
},
{
"type": "Feature",
"properties": {
"name": "Big Ben",
"city": "London",
"country": "UK",
"type": "monument",
"height_m": 96
},
"geometry": {
"type": "Point",
"coordinates": [-0.1246, 51.5007]
}
}
]
}