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
내보내기
내보내기를 클릭하면 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