CSV to PostgreSQL Dump

Convert CSV files to PostgreSQL Dump format

🔒 All processing happens locally in your browser. Your files never leave your device.

About CSV

CSV (Comma-Separated Values) with coordinate columns is a common way to store point data exported from spreadsheets, databases, and survey instruments. Most GIS software can read CSV files with latitude/longitude columns as point layers.

You might convert from CSV when you want to visualise the points as a map layer, perform spatial analysis, or export to a format that preserves the point geometry rather than raw coordinate columns.

Frequently asked questions

Which columns are used for the geometry?

The converter looks for common column names like "latitude", "longitude", "lat", "lon", "x", "y". If your CSV uses different names, you may need to rename the columns before uploading.

Can I convert a CSV with addresses instead of coordinates?

No — the converter requires numeric coordinate columns. To geocode addresses to coordinates first, use a geocoding service such as the Google Maps Geocoding API or Nominatim.

What happens to non-coordinate columns in my CSV?

All other columns in the CSV are preserved as feature attributes (properties) in the output format.