A set of Python libraries to read binary MAPS.ME files
Find a file
Ilya Zverev 345da7d16d 0.10.1
2018-06-20 17:11:53 +03:00
mwm 0.10.1 2018-06-20 17:11:53 +03:00
.gitignore Consolidate scripts into a single one, that is installed system-wide 2017-06-08 11:47:28 +03:00
CHANGELOG.md 0.10.1 2018-06-20 17:11:53 +03:00
LICENSE Initial commit, transferred from the omim repository 2017-04-11 12:54:23 +03:00
README.rst Consolidate scripts into a single one, that is installed system-wide 2017-06-08 11:47:28 +03:00
setup.py 0.10.0: many changes 2018-06-18 19:17:11 +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:

.. code:: python

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

Tools
-----

The package installs the ``mwmtool`` command-line script. It shows
statistics about an MWM file, can search for features or convert ids.
Run it with ``-h`` to see a list of options.

The script source can serve as a library usage example.

License
-------

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