A set of Python libraries to read binary MAPS.ME files
Find a file
2017-04-11 12:47:20 +03:00
mwm Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00
tools Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00
.gitignore Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00
LICENSE Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00
README.md Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00
setup.py Initial commit, transferred from the omim repository 2017-04-11 12:47:20 +03:00

mwm.py

It is a python library to read contents of MAPS.ME mwm files. Not everything is supported, but you can get at least all the features and their attributes. We at MAPS.ME use this script to do analytics and maintenance.

Installation

pip install mwm

Usage

Just add import mwm to your script, and read an mwm file with:

with open('file.mwm', 'rb') as f:
    data = mwm.MWM(f)

Tools

There are some useful tools in the relevant directory, which can serve as the library usage examples:

  • dump_mwm.py prints the header and some statistics on an mwm file.
  • find_feature.py can find features inside an mwm by type or name.
  • ft2osm.py converts a feature id to an OSM website link.

License

Written by Ilya Zverev for MAPS.ME. Published under the Apache License 2.0.