Skip to main content

MapGIS is a widely used closed-source GIS platform in China, especially in geological surveying, engineering, and scientific research. pymapgis provides a lightweight, open-source reader for its native point, line, and polygon vector formats.

Project description

pymapgis

Python 3.9+ License

Read MapGIS 6.x/67 vector files (.wt, .wl, .wp) into GeoPandas GeoDataFrames.

MapGIS is a widely used closed-source GIS platform in China, especially in geological surveying, engineering, and scientific research. pymapgis provides a lightweight, open-source reader for its native point, line, and polygon vector formats.

Features

  • Read point (.wt), line (.wl), and polygon (.wp) files
  • Decode GBK-encoded attribute fields and field names
  • Reconstruct polygon topology from arc records
  • Preserve or repair invalid polygon geometries with shapely.make_valid
  • Export to any format supported by GeoPandas / Fiona (Shapefile, GeoJSON, GeoPackage, etc.)
  • Simple command-line interface for quick conversions

Installation

pip install mapgis2shp

The Python package is imported as pymapgis:

from pymapgis import Reader

Quick start

from pymapgis import Reader

with Reader("example.wp") as r:
    print(r)
    # Write to Shapefile
    r.geodataframe.to_file("example.shp")
    # Or access the GeoDataFrame directly
    print(r.geodataframe.head())

Command-line usage

# Convert a polygon file to Shapefile
pymapgis input.wp output.shp

# Convert to GeoJSON
pymapgis input.wl output.geojson --driver GeoJSON

# Keep raw (possibly invalid) polygon geometries
pymapgis input.wp output.shp --no-make-valid

API

Reader(filepath, make_valid=True)

Main entry point for reading a MapGIS file.

Attributes

Attribute Type Description
shapeType str "POINT", "LINE", or "POLYGON"
crs pyproj.CRS or None Detected coordinate reference system
bbox numpy.ndarray Bounding box [minx, miny, maxx, maxy]
fields list[tuple] Field metadata: (name, type_name, length)
data pandas.DataFrame Attribute table
geom list[shapely.geometry] Geometry objects
geodataframe geopandas.GeoDataFrame Combined attributes and geometry

Methods

  • to_file(filepath, **kwargs) — forward to GeoDataFrame.to_file

Exceptions

  • MapGISError — base exception
  • InvalidFileError — unsupported or unrecognized file
  • TopoError — polygon topology reconstruction error
  • InvalidDirectoryError — reserved for project/directory errors

Supported formats

Extension Geometry type Notes
.wt Point 93-byte fixed record size
.wl LineString 57-byte arc index + coordinate block
.wp Polygon/MultiPolygon Arc index + topology table + coordinate block

CRS detection supports the most common projections found in MapGIS 6.x files, including longitude/latitude, Gauss-Krüger (Transverse Mercator), Lambert Conformal Conic, and Albers Equal-Area. Because MapGIS stores only projection and ellipsoid index numbers, the complete CRS depends on external MapGIS index files (ellip.dat, etc.).

Technical Documentation: MapGIS Vector File Format

The following section is the technical specification of the MapGIS 6x/67 binary vector format (.wt / .wl / .wp). It is synchronized from docs/MapGIS_Vector_Format.md in this repository.

MapGIS vector files are a closed-source binary vector data format developed by MapGIS (Zhongdi Digital). They are widely used in geological surveying, engineering investigation, and scientific research in China. The format itself does not carry a complete coordinate-system description; projection and ellipsoid parameters must be interpreted using the index tables in the MapGIS installation environment (e.g., mapgis67\program\ellip.dat).

Conventions

  • All offsets are 0-based from the beginning of the file.
  • int16 / int32 / uint8 / double are all little-endian.
  • String fields are encoded as GBK unless otherwise noted.

Overall file structure

The three file types share the same top-level organization:

Region Description
File header 8-byte magic + 4-byte file ID + 4-byte index-section start offset
Index section 10 records of 10 bytes each, recording start offsets and sizes of sub-sections
Sub-sections Coordinates / arcs / polygons / attributes, etc.

The index-section start offset is at file bytes 12–15, denoted as data_start. From data_start there are 10 consecutive index records:

head_1 : offset data_start + 0
head_2 : offset data_start + 10
...
head_10: offset data_start + 90

Each index record begins with 8 bytes (start, volume) representing the start offset and size (in bytes) of the corresponding sub-section.

The magic numbers and file IDs are:

File type Magic File ID Description
Point .wt WMAPD22` 1 Point features
Line .wl WMAPD21` 0 Line features
Polygon .wp WMAPD23` 2 Polygon features

Coordinate reference system parsing

The CRS parameters are stored at the same fixed offsets in all three file types:

Content Offset Bytes Type Description
Projection type 109 1 uint8 Projection-type index
Ellipsoid type 110 1 uint8 Ellipsoid index
Scale 143 8 double Scale denominator

The projection-type index and ellipsoid index correspond to index tables in the MapGIS installation directory and ellip.dat, respectively. Therefore, the full CRS interpretation depends on the external MapGIS software environment.

Common ellipsoids

Index Datum PROJ4 definition
1 Beijing 54 +ellps=krass +towgs84=15.8,-154.4,-82.3,0,0,0,0 +units=m +no_defs
2 Xi'an 80 +a=6378140 +b=6356755.288157528
7 WGS84 +datum=WGS84
16 Krassovsky +ellps=krass

Projection parameters

For Gauss-Krüger (projection index 5), Lambert (3), Albers (2), and similar projections, additional parameters are stored as follows. The offsets 175/183/191 correspond to the starting latitude, first standard parallel, and second standard parallel described in the original technical article:

Content Offset Bytes Type Description
Central meridian 151 8 double Format DDDMMSS.sss
Starting latitude 175 8 double Standard parallel 0
First standard parallel 183 8 double Standard parallel 1
Second standard parallel 191 8 double Standard parallel 2
False easting 199 8 double False Easting
False northing 207 8 double False Northing

The central meridian and standard parallels are encoded as DDDMMSS.sss BCD-style doubles and must be converted to decimal degrees by splitting degrees, minutes, and seconds:

deg = s[:-4]
min = s[-4:-2]
sec = s[-2:]
decimal_degrees = deg + min/60 + sec/3600

For longitude/latitude (projection type 0), coordinate values are in decimal degrees. For projected coordinate systems, internal coordinates are usually in millimeters; after reading they are converted to meters by scale = scale / 1000.

Point files (.wt)

File header and index section

Content Offset Bytes Type Description
File header magic 0–7 8 string WMAPD22`
File ID 8–11 4 int32 Fixed value 1
Index section start 12–15 4 int32 data_start

Index-section meaning:

head Offset (relative to data_start) Meaning
head_1 0 Coordinate data section start and size
head_2 10 Unused
head_3 20 Attribute data section start and size

Coordinate data section

The coordinate data section stores one point per 93 bytes. The first 93-byte record is empty, so the actual point count is:

point_count = coord_volume / 93 - 1

Single point record structure:

Content Offset within record Bytes Type Description
Label 0 1 uint8 Point label
Reserved 1–6 6 - Unused
X coordinate 7–14 8 double X value
Y coordinate 15–22 8 double Y value
Reserved 23–92 70 - Unused

Line files (.wl)

File header and index section

Content Offset Bytes Type Description
File header magic 0–7 8 string WMAPD21`
File ID 8–11 4 int32 Fixed value 0
Index section start 12–15 4 int32 data_start

Index-section meaning:

head Offset (relative to data_start) Meaning
head_1 0 Line data section start and size
head_2 10 Coordinate data section start and size
head_3 20 Attribute data section start and size

Line data section

The line data section stores one line index record per 57 bytes. The first 57-byte record is empty, so the actual line count is:

line_count = line_volume / 57 - 1

Single line index structure:

Content Offset within record Bytes Type Description
Reserved 0–9 10 - Unused
Anchor point count 10–13 4 int32 Number of coordinate points in this line
Anchor coordinate offset 14–17 4 int32 Offset relative to coordinate-section start
Reserved 18–56 39 - Unused

Coordinate data section

The coordinate data section stores anchor points sequentially. Each XY pair occupies 16 bytes (2 × double). Reading uses the anchor point count and coordinate offset from the line index.

Polygon files (.wp)

File header and index section

Content Offset Bytes Type Description
File header magic 0–7 8 string WMAPD23`
File ID 8–11 4 int32 Fixed value 2
Index section start 12–15 4 int32 data_start

Index-section meaning:

head Offset (relative to data_start) Meaning
head_1 0 Arc data section start and size
head_2 10 Coordinate data section start and size
head_3 20 Unused
head_4 30 Polygon topology data section start and size
head_10 90 Attribute data section start and size

Arc data section

Polygon files reuse the line arc-storage structure: 57 bytes per arc index record, with the first 57-byte record empty. The fields have the same meaning as in .wl (anchor point count + coordinate offset).

Coordinate data section

Same as line files: each 16 bytes stores one double-precision XY pair. All arc coordinates are stored in this section.

Polygon topology data section

The topology data section stores one record per 24 bytes. The first 24-byte record is empty, so the actual topology record count is:

topo_count = poly_volume / 24 - 1

The first 16 bytes of each record contain 4 little-endian int32 values. The parser mainly uses columns 2 and 3 (0-indexed), i.e., record bytes 8–15:

Content Offset within record Bytes Type Description
Left polygon ID 8–11 4 int32 Polygon ID on the left side of the arc
Right polygon ID 12–15 4 int32 Polygon ID on the right side of the arc
Reserved 16–23 8 - Unused

Polygon IDs are 1-based. To reconstruct a polygon, select all arcs whose left or right polygon ID equals the target ID. If the left ID matches, the arc coordinates are usually reversed so that the polygon boundary is consistently on the same side of the arc. The arcs are then chained by matching endpoints into closed rings, and rings are classified as shells or holes to build Polygon / MultiPolygon geometries.

Polygon reconstruction key points

  1. Select arcs: For target polygon ID pid, select arcs where left_id == pid or right_id == pid.
  2. Orient arcs: If left_id == pid, reverse the arc coordinates so the polygon boundary stays on the consistent side.
  3. Form rings: Use a greedy nearest-endpoint merge to chain arcs into closed rings. Endpoint coordinates may differ by ~1e-6 due to floating-point precision.
  4. Hole detection: Use point-in-polygon containment between rings to distinguish outer shells and inner holes.
  5. Validity repair: Because arc merging can produce self-intersecting rings, shapely.make_valid() or similar repair is recommended after reconstruction.

Attribute data section (common to all file types)

Point, line, and polygon files share the same attribute table structure.

Attribute table header

Content Offset within attribute section Bytes Type Description
Reserved 0–321 322 - Date, work directory, and other metadata
Field count 322–323 2 int16 field_count
Record count 324–327 4 int32 record_count
Record length 328–329 2 int16 record_length
Reserved 330–347 18 - Unused
Field descriptors 348 onwards 39 × field_count - 39 bytes per field

The original technical article states that field descriptors start at "the 349th byte"; this is a 1-based description. This document uses 0-based offsets, so the start is 348.

Field descriptor

Each field descriptor is fixed 39 bytes:

Content Offset within descriptor Bytes Type Description
Field name 0–19 20 string GBK encoded, terminated by \x00
Field type 20 1 uint8 0–7
Storage offset 21–24 4 int32 Start offset of the field within each record
Reserved / display width 25–38 14 - Includes display width, decimal places, etc.

Field type mapping:

Type value Meaning Python type
0 string str
1 byte int
2 short integer int
3 integer int
4 float float
5 double float
6 date datetime.date
7 time datetime.time

Record data

Immediately after the field descriptors there are record_count × record_length bytes of data. The first record is empty; the actual valid record count is record_count - 1.

Each record is sliced according to the storage offset in the field descriptors. Field length is calculated as:

  • Non-final field: next_offset - current_offset
  • Final field: record_length - current_offset

String fields are read up to the first \x00. Date fields are year (int16) + month + day. Time fields are hour + minute + seconds (double, including microseconds).

Known limitations

  1. Incomplete coordinate system: The file only stores projection/ellipsoid index numbers. The full CRS depends on external ellip.dat and projection index tables. The current implementation embeds common ellipsoids (Beijing 54, Xi'an 80, WGS84, etc.) and projections (Gauss-Krüger, Albers, Lambert).
  2. Polygon topology tolerance: Arc endpoints may have tiny deviations, and some source data may contain topological gaps or self-intersections. Geometry validity repair is recommended after reading.
  3. Encoding: Field names and string attribute values use GBK. Illegal bytes are typically truncated at the first invalid byte.
  4. Scale: In projected coordinate systems internal coordinates are often in millimeters and are converted to meters by scale / 1000; for longitude/latitude systems scale is usually 1.

Development

Clone the repository and install in editable mode with dev dependencies:

git clone https://github.com/pymapgis/pymapgis.git
cd pymapgis
pip install -e ".[dev]"

Run the test suite:

pytest

Run the smoke-test regression against all local MapGIS files:

python verify_pymapgis.py

License

This project is licensed under the Apache License 2.0.

Acknowledgments

The original reverse-engineering of the MapGIS binary format was done by the author of the legacy pymapgis.py script. This package refactors and extends that work into an installable, tested library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mapgis2shp-2.0.2.tar.gz (48.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mapgis2shp-2.0.2-py3-none-any.whl (35.1 kB view details)

Uploaded Python 3

File details

Details for the file mapgis2shp-2.0.2.tar.gz.

File metadata

  • Download URL: mapgis2shp-2.0.2.tar.gz
  • Upload date:
  • Size: 48.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for mapgis2shp-2.0.2.tar.gz
Algorithm Hash digest
SHA256 d2209a1ae72abb7769f6407659af22f3857f2d455762d52c4914f142d001bb36
MD5 d9878d7bb676c4d2fa1ab91792e45e0a
BLAKE2b-256 b4c2dec0c1d78b0fad6fdbd132e59787b0753550080b2c954d8864d927eb1968

See more details on using hashes here.

File details

Details for the file mapgis2shp-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: mapgis2shp-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for mapgis2shp-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 799c075a24b055f98b76196ddec109f24d9fa8e83993cacd3e12ccb5f36142b8
MD5 c6497aa45bc57095360728ad71601584
BLAKE2b-256 8c1ee669750953b929d48820c61526a7952efb532e7c3024b3789da799b7338a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page