WKT 📝

WKT (Well-Known Text)

Open Beta
.wkt · text/plain

WKT, ज्यामितियों के लिए एक टेक्स्ट प्रतिनिधित्व फ़ॉर्मैट है, जिसका उपयोग डेटाबेस (PostGIS, SpatiaLite) और GIS अनुप्रयोगों में किया जाता है। सरल और एकीकृत करने में आसान।

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

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

टेक्स्ट प्रारूप
OGC मानक
आसान DB एकीकरण
सभी ज्यामिति प्रकार समर्थित

WKT प्रारूप के बारे में

WKT (Well-Known Text) is the textual encoding of geometry from the OGC standard: POINT(37.6177 55.7558), LINESTRING(...), POLYGON((...)). It is understood by every spatial database and library — PostGIS, SpatiaLite, Shapely, JTS, GEOS — and it can be read by eye, which makes the format indispensable while debugging.

The export is taken when geometry is needed as text: to paste into an SQL query, to put into a test, to pass coordinates to someone else's system, to take a quick look at what came out of the selected area at all.

The output is a single text file in UTF-8. At the top are comments with the bounding box of the area and the coordinate system, then it goes layer by layer: a line like "-- layer: roads" with one geometry per line underneath it. Coordinates are in WGS84 (EPSG:4326) with six decimal places — that is about ten centimeters on the ground.

One important thing: WKT stores shapes only. There are no names, types or other OpenStreetMap tags in the file — if you need attributes, take GeoJSON, GeoPackage or a CSV with a WKT column.

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

निम्नलिखित प्रोग्राम और अनुप्रयोग OSM2CDR से निर्यात की गई WKT (Well-Known Text) (.wkt) फ़ाइलों को खोल, संपादित और उनके साथ काम कर सकते हैं:

💻PostGIS 💻SpatiaLite 🌎QGIS 💻Shapely (Python) 💻JTS (Java) 💻GEOS

Format specifications

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

🏗
डेटाबेस (PostGIS)
Geometry is pasted into SQL directly through ST_GeomFromText — with no converters and no intermediate files.
💻
प्रोग्रामिंग
Convenient material for tests and debugging: the shape is visible to the eye right in the source.
📊
GIS विश्लेषण
Quick exchange of geometry between GIS tools, all of which understand WKT.
🎨
सिस्टम एकीकरण
Passing coordinates to an adjacent system that accepts plain text rather than GIS format files.

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

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

निर्यात के बाद कैसे खोलें

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

मुफ़्त

WKT (Well-Known Text) मानचित्र निर्यात प्राप्त करें

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

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

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

WKT क्या है?
क्या मैं WKT को PostGIS में आयात कर सकता हूँ?
Are names and tags preserved?
How do I tell which layer is which?
Which coordinate system and what precision?

अन्य प्रारूपों से तुलना करें

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

अक्सर एक साथ निर्यात किए जाते हैं

Related Articles