WKT ہندسے کے ساتھ CSV، جیو ڈیٹا کے تبادلے کے لیے ایک عالمگیر متنی فارمیٹ ہے۔ یہ کسی بھی اسپریڈ شیٹ ایپلیکیشن میں کھلتا ہے، ڈیٹا بیسز میں آسانی سے درآمد ہوتا ہے، اور ڈیٹا پروسیسنگ اسکرپٹس میں استعمال ہوتا ہے۔
اہم خصوصیات
CSV فارمیٹ کے بارے میں
CSV is a simple table: a row per object, columns separated by commas. Geography is put into it in two ways, and we use both at once: the full geometry of an object is written as text in WKT format, and next to it come the latitude and longitude of a representative point — for a line and a polygon that is a point on the object itself, not a nominal center outside it.
The format is chosen when the map is needed as data rather than as a picture: to count objects in a table, to merge with an export from your own system, to load into a database, to hand to a colleague without a GIS, to run through a script. CSV is read by literally everything — from Excel to pandas.
The output is a single file in UTF-8 encoding. One layer gives an ordinary table; if several layers are selected, they are gathered into one file, and the first column _layer shows where the row came from — it makes splitting the data back apart easy. OSM attributes go as separate columns, and the coordinates are in WGS84 rounded to seven decimal places, which is about a centimeter.
کون سا پروگرام CSV فائلیں کھولتا ہے
درج ذیل پروگرام اور ایپلیکیشنز OSM2CDR سے برآمد کردہ CSV (Comma-Separated Values) (.csv) فائلوں کو کھول، ترمیم اور ان کے ساتھ کام کر سکتے ہیں:
Format specifications
- Open standard
- 2D only
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- RFC 4180 CSV with WKT geometry column or lat/lon pairs. UTF-8 encoded. Opens in Excel, LibreOffice, pandas, QGIS.
CSV نقشے کون استعمال کرتا ہے
CSV کیسے برآمد کریں
ایکسپورٹ کے بعد کیسے کھولیں
- Excel — do not open the file with a double click, otherwise non-Latin text turns into gibberish: Data → Get Data → From Text/CSV, encoding UTF-8, comma as the separator.
- QGIS — Layer → Add Layer → Add Delimited Text Layer; choose the WKT column as the geometry, coordinate system EPSG:4326.
- Python — pandas.read_csv for the table, and for the geometry shapely.wkt.loads on the WKT column, or geopandas straight away if you need spatial analysis.
- PostGIS — load the table with the COPY command and turn the text into geometry through ST_GeomFromText with SRID 4326.
- Google Sheets and My Maps — accept the latitude and longitude columns directly, if a point representation of the objects is enough.
CSV میں مقبول نقشے
CSV (Comma-Separated Values) نقشہ برآمدات حاصل کریں
OpenStreetMap سے پیشہ ورانہ CSV نقشے ڈاؤن لوڈ کریں۔ فوری تخلیق، کوئی بھی علاقہ۔
اکثر پوچھے جانے والے سوالات
دیگر فارمیٹس سے موازنہ کریں
متعلقہ فارمیٹس
اکثر ایک ساتھ برآمد کیے جاتے ہیں
Related Articles
WKB and WKT: Geometry Formats for Developers
WKB and WKT: binary and text geometry formats. PostGIS, Shapely, GEOS. When to use which, conversion, performance, and e
guideData Products: Ready-Made Geodata Extracts for Analysis
274 geodata extracts from OpenStreetMap: POIs, buildings, roads, water bodies. How to choose, download, and use for area
formatCSV for Geodata — Simplest Tabular Format for POIs, Coordinates and Addresses
CSV (RFC 4180) is the simplest tabular text format: lat/lon columns or WKT geometry, readable in Excel/pandas/R/QGIS; th