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 الآن ✨ النسخة التجريبية المفتوحة — مجاني، بلا قيود

الميزات الرئيسية

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

تستطيع البرامج والتطبيقات التالية فتح ملفات PostGIS SQL Dump (.sql) المُصدَّرة من OSM2CDR وتحريرها والعمل عليها:

💻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
اختر PostGIS SQL Dump من قائمة تضم 127 صيغة تصدير متاحة
3
تصدير
انقر على تصدير واستلم ملف .sql خلال 1-5 دقائق
4
تنزيل
نزّل ملف PostGIS SQL الجاهز وافتحه في PostgreSQL + PostGIS

خرائط شائعة بصيغة PostGIS SQL

Free

احصل على عمليات تصدير خرائط PostGIS SQL Dump

نزّل خرائط PostGIS SQL الاحترافية من OpenStreetMap. توليد فوري لأي منطقة.

مجاني / تصدير
صدّر 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