WKB 🧮

Well-Known Binary (OGC)

Open Beta
.wkb · application/vnd.ogc.wkb

WKB (Well-Known Binary) is the binary representation of vector geometry from the OGC Simple Features standard (1999), the foundation of almost every GIS database: each geometry inside PostGIS, MySQL Spatial or GeoPackage is WKB. The format is several times more compact than textual WKT because coordinates are packed into doubles without ASCII. Our exporter writes the geometries of the selected OSM layers into a .wkb file: every object is standard OGC WKB, but the file is a container — an 8-byte header (a WKB marker plus the number of objects), then geometries with a length prefix, while the coordinate system lies in a companion .prj file. Honestly: to parse the file you have to read the header and the lengths — this is not a single "bare" blob for a direct ST_GeomFromWKB. Attributes are not preserved, and all the selected layers are merged into one stream of geometries (up to 500,000 objects).

Xuất WKB ngay ✨ Open Beta — miễn phí, không giới hạn

Tính năng chính

Each feature's geometry is standard OGC WKB
Container: an 8-byte header + length-prefixed geometries
Coordinate system in a companion .prj (WKT) file
Several times more compact than text WKT (doubles without ASCII)
Single layer — a .wkb file, multiple layers — a ZIP archive

Giới thiệu về định dạng WKB

WKB is the binary encoding of geometry from the OGC Simple Features standard: byte order, a shape type code and coordinates as double-precision numbers. Inside PostGIS, GeoPackage and SpatiaLite geometry is stored exactly like this, which is why WKB is read and written by every spatial library — Shapely, GEOS, JTS, GDAL.

This export is taken by people writing their own pipeline: parsing without going through text, loading into a database, testing their own implementation of the standard, compact transfer of geometry between services.

You need to know how the file is arranged in advance. This is not one "bare" geometry but a container: eight bytes of header (a WKB marker and the number of objects), then geometries one after another, each preceded by its length. The geometries themselves are standard OGC WKB and can be fed into ST_GeomFromWKB one by one once the container is parsed. The coordinate system lies in a neighboring .prj file in text form.

The limits: OpenStreetMap attributes are not preserved — geometry only, and all the selected layers are merged into a single stream with no separation. The ceiling is 500,000 geometries. If you need names, tags and layers, take GeoPackage, FlatGeobuf or GeoJSON.

Chương trình nào mở được tệp WKB

Các chương trình và ứng dụng sau có thể mở, chỉnh sửa và làm việc với tệp Well-Known Binary (OGC) (.wkb) được xuất từ OSM2CDR:

💻PostGIS 💻Shapely (Python) 💻GDAL/OGR 💻JTS / GEOS 🌎QGIS

Format specifications

Ai sử dụng bản đồ WKB

🏗
Building a custom GIS pipeline on Shapely, JTS, or GEOS without parsing GeoJSON
Geometry is read straight into Shapely, JTS or GEOS — with no intermediate text parsing.
💻
Loading geometry into PostGIS or MySQL after parsing the container header
Parsed geometries are fed into ST_GeomFromWKB and land in PostGIS or MySQL.
📊
Checking your implementation against the OGC Simple Features standard
Convenient material for testing your own implementation of the OGC standard on real city data.
🎨
Compact geometry transfer between services as a binary exchange
Compact binary exchange of geometry between services, where text is excessive.

Cách xuất WKB

1
Chọn khu vực
Vẽ một hình chữ nhật hoặc đa giác trên bản đồ tương tác tại osm2cdr.ru
2
Chọn WKB
Chọn Well-Known Binary (OGC) từ danh sách 127 định dạng xuất khả dụng
3
Xuất
Nhấn Xuất và nhận tệp .wkb của bạn trong 1-5 phút
4
Tải xuống
Tải tệp WKB đã sẵn sàng và mở trong PostGIS

Cách mở tệp sau khi xuất

Bản đồ phổ biến ở định dạng WKB

Miễn phí

Nhận bản đồ xuất ở định dạng Well-Known Binary (OGC)

Tải bản đồ WKB chuyên nghiệp từ OpenStreetMap. Tạo tức thì, bất kỳ khu vực nào.

Miễn phí / lần xuất
Xuất WKB ngay →

Câu hỏi thường gặp

Can I INSERT it directly via ST_GeomFromWKB?
Where is the coordinate system stored?
How does WKB differ from WKT?
How do I read WKB in Python?
Are OSM names and tags preserved?
How do I tell one layer from another?
How many objects fit into the file?

Định dạng liên quan

Thường được xuất cùng nhau

Related Articles