GeoJSON to CSV
Convert a GeoJSON Feature or FeatureCollection into a CSV table with geometry and property columns. Runs entirely in your browser.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
How the GeoJSON to CSV converter works
- Paste a GeoJSON Feature or FeatureCollection - a sample loads automatically.
- The tool extracts geometry type, longitude/latitude (for points), and all property fields.
- Copy or download the resulting CSV table.
FAQ
What GeoJSON geometry types are supported?
Point geometries are converted to longitude/latitude columns directly. Other geometry types (LineString, Polygon) are labeled by type, but their coordinates aren't flattened into columns since CSV can't represent nested shapes well.
What happens to the properties object?
Every property key found across all features becomes its own CSV column, so mixed-property feature collections still produce a consistent table.
Can I convert a single Feature instead of a FeatureCollection?
Yes - paste a single GeoJSON Feature object and it will be treated as a one-row CSV.
Can I download the result as a file?
Yes - use the Download button to save the CSV output directly, or Copy to paste it into a spreadsheet.
How we compare
| Feature | Online Tool Store | GIS desktop software | Manual scripting |
|---|---|---|---|
| No install required | ✓ | ✗ | ✓ |
| Instant, in-browser | ✓ | ✗ | ✗ |
| Handles mixed property fields | ✓ | ✓ | ✗ |
Useful for quickly pulling map data into a spreadsheet without opening a full GIS application.