WKT 📝

WKT (Well-Known Text)

Open Beta
.wkt · text/plain

WKT એ ભૂમિતિ માટેનું ટેક્સ્ટ રજૂઆત ફોર્મેટ છે, જે ડેટાબેઝ (PostGIS, SpatiaLite) અને GIS એપ્લિકેશનમાં વપરાય છે. સરળ અને એકીકૃત કરવામાં સહેલું.

WKT હમણાં એક્સપોર્ટ કરો ✨ ઓપન બીટા — મફત, કોઈ મર્યાદા નહીં

મુખ્ય સુવિધાઓ

ટેક્સ્ટ ફોર્મેટ
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?

અન્ય ફોર્મેટ સાથે સરખામણી કરો

Convert to WKT and back

સંબંધિત ફોર્મેટ

વારંવાર એકસાથે એક્સપોર્ટ થાય છે

Related Articles