WKT 📝

WKT (Well-Known Text)

Open Beta
.wkt · text/plain

WKT என்பது வடிவவியல்களுக்கான ஒரு உரை பிரதிநிதித்துவ வடிவம், தரவுத்தளங்களில் (PostGIS, SpatiaLite) மற்றும் GIS பயன்பாடுகளில் பயன்படுத்தப்படுகிறது. எளிமையானது மற்றும் ஒருங்கிணைக்க எளிது.

WKT ஐ இப்போதே ஏற்றுமதி செய்யுங்கள் ✨ திறந்த பீட்டா — இலவசம், வரம்புகள் இல்லை

முக்கிய அம்சங்கள்

உரை வடிவம்
OGC தரநிலை
எளிதான தரவுத்தள ஒருங்கிணைப்பு
அனைத்து வடிவவியல் வகைகளும் ஆதரிக்கப்படுகின்றன

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
ஏற்றுமதி
ஏற்றுமதி என்பதைக் கிளிக் செய்து 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