SpatiaLite، SQLite کے لیے ایک مکانی ایکسٹینشن ہے۔ مکانی استفسارات، اشاریوں اور OGC معیارات کی مکمل حمایت کے ساتھ ایک مختصر واحد فائل ڈیٹا بیس فارمیٹ۔
اہم خصوصیات

SpatiaLite فارمیٹ کے بارے میں
SpatiaLite is SQLite with a spatial extension: a single file database, no server, yet real SQL with geometry, spatial functions and indexes. The file is simply copied, put into a repository or onto a flash drive and works anywhere.
The format is taken when the data has to be computed with rather than admired: select buildings within a radius, sum up street length by type, join layers with a query, filter by an attribute. All of that is done with a query straight against the file, without deploying PostGIS.
What is inside: one database file where each OSM layer is a separate table with geometry and attributes; the service tables are filled in and spatial indexes are built at write time. The coordinates are WGS84 (EPSG:4326). QGIS opens the file by drag and drop, GDAL/OGR and Python read it directly.
About the neighbouring format: GeoPackage is also SQLite and also a single file, but it is an OGC standard and other people's software understands it better. SpatiaLite wins where you write the queries yourself and need its full set of spatial functions.
کون سا پروگرام SpatiaLite فائلیں کھولتا ہے
درج ذیل پروگرام اور ایپلیکیشنز OSM2CDR سے برآمد کردہ SpatiaLite (SQLite + spatial) (.sqlite) فائلوں کو کھول، ترمیم اور ان کے ساتھ کام کر سکتے ہیں:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- SpatiaLite .sqlite (open SQLite extension). Indexed spatial queries with R-Tree. Opens in QGIS, SpatiaLite GUI.
SpatiaLite نقشے کون استعمال کرتا ہے
SpatiaLite کیسے برآمد کریں
ایکسپورٹ کے بعد کیسے کھولیں
- QGIS — drag the file into the program window or add it through the Data Source Manager; the tables will appear as ordinary layers.
- DB Browser for SQLite — look through the tables and run a query; for spatial functions load the mod_spatialite module.
- spatialite-gui and the console spatialite — the project's own tools: queries with spatial functions work out of the box.
- Python — sqlite3 with mod_spatialite loaded for queries, or geopandas.read_file with the table you need given as the layer.
- GDAL — ogr2ogr converts the database into GeoPackage and back with one command if another format turns out to be needed.
SpatiaLite میں مقبول نقشے
SpatiaLite (SQLite + spatial) نقشہ برآمدات حاصل کریں
OpenStreetMap سے پیشہ ورانہ SpatiaLite نقشے ڈاؤن لوڈ کریں۔ فوری تخلیق، کوئی بھی علاقہ۔
اکثر پوچھے جانے والے سوالات
متعلقہ فارمیٹس
اکثر ایک ساتھ برآمد کیے جاتے ہیں
Related Articles
SpatiaLite format: SQLite + GEOS + PROJ — portable spatial database for OSM
SpatiaLite by Alessandro Furieri 2008: SQLite extension with WKB BLOB, R-Tree, ST_* functions, single-file spatial datab
guideGeoPackage: One File for All Your Geodata
GeoPackage is an SQLite-based format for storing vector, raster, styles, and metadata in a single file. Complete guide f