WKT to Shapefile Converter

The handoff step from a spatial-SQL pipeline to a GIS analyst who lives in ArcGIS or QGIS.

Convert WKT to Shapefile now

Common issues converting WKT to Shapefile

Frequently asked questions

Why doesn't the output have my PostGIS attributes?

WKT carries geometry only. Run a `SELECT ST_AsText(geom), * FROM table` and process the attributes separately, then join post-conversion.

Are MULTIPOLYGON rings nested correctly?

Yes — outer rings with their holes are preserved. Output uses ESRI's CW-outer / CCW-hole convention.

What about GEOMETRYCOLLECTION?

Shapefile doesn't support mixed-type geometry, so a GEOMETRYCOLLECTION is dropped with a warning. Split your WKT into per-type files first.

Does the .prj declare WGS 84 or something else?

WGS 84 by default. Use the CRS parameter to specify a different output projection — the converter will reproject before emit.

Related conversions