WKT 📝

WKT (Well-Known Text)

Open Beta
.wkt · text/plain

WKT is een tekstuele representatie voor geometrieën, gebruikt in databases (PostGIS, SpatiaLite) en GIS-toepassingen. Eenvoudig en gemakkelijk te integreren.

WKT nu exporteren ✨ Open bèta — gratis, zonder limieten

Belangrijkste functies

Tekstformaat
OGC-standaard
Eenvoudige integratie met database
Alle geometrietypen ondersteund

Over het WKT-formaat

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.

Welk programma opent WKT-bestanden

De volgende programma's en toepassingen kunnen WKT (Well-Known Text)-bestanden (.wkt) die uit OSM2CDR zijn geëxporteerd openen, bewerken en verwerken:

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

Format specifications

Wie gebruikt WKT-kaarten

🏗
Databases (PostGIS)
Geometry is pasted into SQL directly through ST_GeomFromText — with no converters and no intermediate files.
💻
Programmeren
Convenient material for tests and debugging: the shape is visible to the eye right in the source.
📊
GIS-analyse
Quick exchange of geometry between GIS tools, all of which understand WKT.
🎨
Systeemintegratie
Passing coordinates to an adjacent system that accepts plain text rather than GIS format files.

WKT exporteren

1
Gebied selecteren
Teken een rechthoek of polygoon op de interactieve kaart op osm2cdr.ru
2
WKT kiezen
Selecteer WKT (Well-Known Text) uit de lijst van 127 beschikbare exportformaten
3
Exporteren
Klik op Exporteren en ontvang uw .wkt-bestand binnen 1-5 minuten
4
Downloaden
Download het gerede WKT-bestand en open het in PostGIS

Openen na de export

Populaire kaarten in WKT

Free

Ontvang WKT (Well-Known Text)-kaartexports

Download professionele WKT-kaarten van OpenStreetMap. Directe generatie, elk gebied.

Gratis / export
WKT nu exporteren →

Veelgestelde vragen

Wat is WKT?
Kan ik WKT importeren in PostGIS?
Are names and tags preserved?
How do I tell which layer is which?
Which coordinate system and what precision?

Vergelijken met andere formaten

Verwante formaten

Vaak samen geëxporteerd

Related Articles