Shapefile to CSV Converter

Flattens a GIS Shapefile into a spreadsheet for analysis, pivoting, or loading into a BI tool.

Convert Shapefile to CSV now

Common issues converting Shapefile to CSV

Frequently asked questions

How are polygons represented in the output?

As their centroid in the 'latitude' and 'longitude' columns. Use GeoJSON→CSV with WKT columns for full geometry preservation.

Are DBF attribute names truncated?

They're already truncated by the DBF format to 10 characters — that happened when the shapefile was created. The CSV inherits those truncated names.

What if my shapefile is in a projected CRS?

The .prj is used to reproject to WGS 84 before exporting lat/lng. Without a .prj we assume WGS 84, which produces nonsense lat/lng values for projected data.

Does the output handle non-ASCII characters?

Yes, the output is UTF-8 with a BOM. If your output has garbled characters, the shapefile's DBF was in a non-UTF-8 encoding — re-export with UTF-8.

Related conversions