PostGIS SQL 💾

PostGIS SQL Dump

Open Beta
.sql · application/sql

PostGIS SQL is a text SQL script that creates a table with a geometry column and fills it with data, ready to load into any PostgreSQL database with the PostGIS extension. It is a convenient way to hand an OSM selection to a team already on the PostgreSQL stack: apply the script and you immediately have a geometry table for queries through ST_* functions. Our exporter generates a self-contained .sql: CREATE TABLE with a geom column and attributes, then one INSERT per feature where geometry is given via ST_GeomFromText(WKT, SRID) (SRID 4326 by default). Multiple layers become separate tables, and values are escaped (SQL-injection safe). Honestly: this is a simple human-readable dump via ST_GeomFromText, not a binary pg_dump archive and not the full osm2pgsql schema with planet_osm tables and spatial indexes.

अभी PostGIS SQL निर्यात करें ✨ Open Beta — निःशुल्क, कोई सीमा नहीं

मुख्य विशेषताएँ

Self-contained .sql: CREATE TABLE + INSERT, applied via psql -f
Geometry via ST_GeomFromText(WKT, SRID), SRID 4326 by default
Attribute types mapped to PostgreSQL types (TEXT, DOUBLE PRECISION, INTEGER)
Multiple layers — separate tables in one script
Values are escaped — SQL-injection safe

PostGIS SQL फ़ाइलें कौन सा प्रोग्राम खोलता है

निम्नलिखित प्रोग्राम और अनुप्रयोग OSM2CDR से निर्यात की गई PostGIS SQL Dump (.sql) फ़ाइलों को खोल, संपादित और उनके साथ काम कर सकते हैं:

💻PostgreSQL + PostGIS 💻psql 🌎QGIS 💻GeoServer 💻DBeaver

Format specifications

PostGIS SQL मानचित्रों का उपयोग कौन करता है

🏗
Loading an OSM selection into your PostgreSQL/PostGIS database with one script
💻
Handing data to a GIS team already on the PostgreSQL stack
📊
Preparing a layer for GeoServer or QGIS via a PostGIS connection
🎨
Embedding geodata into a SQL pipeline or CI/CD through psql -f

PostGIS SQL कैसे निर्यात करें

1
क्षेत्र चुनें
osm2cdr.ru पर इंटरैक्टिव मानचित्र पर एक आयत या बहुभुज बनाएँ
2
PostGIS SQL चुनें
127 उपलब्ध निर्यात प्रारूपों की सूची से PostGIS SQL Dump चुनें
3
निर्यात करें
Export पर क्लिक करें और 1-5 मिनट में अपनी .sql फ़ाइल प्राप्त करें
4
डाउनलोड करें
तैयार PostGIS SQL फ़ाइल डाउनलोड करें और उसे PostgreSQL + PostGIS में खोलें

PostGIS SQL में लोकप्रिय मानचित्र

Free

PostGIS SQL Dump मानचित्र निर्यात प्राप्त करें

OpenStreetMap से पेशेवर PostGIS SQL मानचित्र डाउनलोड करें. तत्काल जनरेशन, कोई भी क्षेत्र.

निःशुल्क / निर्यात
अभी PostGIS SQL निर्यात करें →

अक्सर पूछे जाने वाले प्रश्न

Is this a pg_dump dump?
Will this be the osm2pgsql schema with planet_osm tables?
How do I apply the script?
Which coordinate system is the geometry in?

संबंधित प्रारूप

Related Articles