TopoJSON to CSV Converter

Pull the attribute table out of a topology for use in a non-spatial tool — Excel, Google Sheets, pandas — typically for tabular analysis or reporting.

Convert TopoJSON to CSV now

Common issues converting TopoJSON to CSV

Frequently asked questions

What's in the lat/lng columns for a Polygon?

The centroid of the polygon. For MultiPolygon, the centroid of the largest member. This is approximate — use it for marker placement on a map, not for boundary analysis.

Are feature ids preserved?

Yes — output has an `_id` column (prefixed to avoid collision with user properties) when the source has feature ids.

How are mixed-type topologies handled?

All features become rows. Point features get exact lat/lng; line/polygon features get centroid lat/lng. The geometry type is captured in a `_type` column.

Can I round-trip CSV → TopoJSON → CSV?

For Point data, yes — losslessly (modulo float-formatting). For line/polygon data, no — the centroid step is one-way.

Related conversions