GeoJSON to Shapefile Converter

Required whenever a downstream consumer — enterprise GIS, government portal, engineering firm — mandates Shapefile delivery.

Convert GeoJSON to Shapefile now

Common issues converting GeoJSON to Shapefile

Frequently asked questions

Why does the output come packaged as a ZIP?

A Shapefile is four files (.shp, .shx, .dbf, .prj) that must stay together. Zipping is the standard delivery format and preserves the bundle.

What happens to property names longer than 10 characters?

They're truncated by the DBF spec to 10 characters. Rename long keys in your GeoJSON before conversion if you need to control the truncation.

Can I export mixed geometry types?

No. The format permits exactly one geometry type per Shapefile. Split the FeatureCollection by geometry type and convert each separately.

What CRS does the output use?

WGS 84 (EPSG:4326), pinned in the .prj. Modern versions of ArcGIS won't load a projectionless shapefile, so the .prj is always written.

Related conversions