Convert GeoJSON to CSV

Convert GeoJSON to a CSV spreadsheet with lat/lon columns, in your browser.

Output (CSV)
name,lat,lon
City Hall,37.7749,-122.4194

Runs entirely in your browser - nothing is sent to a server.

Related tools

How it works

  1. 1

    Paste your GeoJSON

    A Feature, FeatureCollection or Geometry.

  2. 2

    Copy the CSV

    Ready to open in Excel/Google Sheets.

FAQ

How are Point features written to CSV?
As two columns, lat and lon, alongside any of that feature’s other properties.
What about Polygon/LineString features - do they get flattened to lat/lon?
No - a non-Point geometry is written as WKT text in a wkt column instead, since it can’t be represented as one lat/lon pair.