Skip to main content

A pure Python MapFile parser for working with MapServer

Project description

Version Docs Build Status Coveralls Downloads

A pure Python parser for working with MapServer MapFiles, built using Lark. mappyfile is an official OSGeo Community Project.

https://raw.githubusercontent.com/geographika/mappyfile/master/docs/images/OSGeo_community_small.png

mappyfile is used for formatting and validation in https://app.mapserverstudio.net/, and can be tested for free on any of your Mapfiles. If you find mappyfile useful please consider signing up for a professional account at https://mapserverstudio.net/. This will help to fund maintenance and further development of both mappyfile and MapServer.

Requirements

  • Python 3.8 or higher

Installation

mappyfile is available on PyPI (the Python Package Index), and can be installed using pip:

pip install mappyfile

This will also install its required dependencies - Lark, and jsonschema.

To install the optional lark-cython library for better performance on CPython you can run the following command:

pip install mappyfile[lark_cython]

pip install mappyfile[lark_cython,yaml]

mappyfile is also available on conda. Install as follows:

conda install -c conda-forge mappyfile

Documentation

Full documentation is available at http://mappyfile.readthedocs.io/en/latest/

https://raw.githubusercontent.com/geographika/mappyfile/master/docs/images/class_parsed_small.png

Usage

From within Python scripts:

import mappyfile

mapfile = mappyfile.open("./docs/examples/raster.map")

# update the map name
mapfile["name"] = "MyNewMap"

new_layer_string = """
LAYER
    NAME 'land'
    TYPE POLYGON
    DATA '../data/vector/naturalearth/ne_110m_land'
    CLASS
        STYLE
            COLOR 107 208 107
            OUTLINECOLOR 2 2 2
            WIDTH 1
        END
    END
END
"""

layers = mapfile["layers"]

new_layer = mappyfile.loads(new_layer_string)

layers.insert(0, new_layer) # insert the new layer at any index in the Mapfile

for l in layers:
    print("{} {}".format(l["name"], l["type"]))

print(mappyfile.dumps(mapfile, indent=1, spacer="\t"))

YAML support is available as an optional extra (pip install mappyfile[yaml]):

import mappyfile
import mappyfile.yaml

mapfile = mappyfile.open("./docs/examples/raster.map")

# export to YAML
mappyfile.yaml.save(mapfile, "raster.yaml")

# load back from YAML
mapfile2 = mappyfile.yaml.open("raster.yaml")
print(mappyfile.dumps(mapfile2))

Command line tools are also available - format, validate, schema, yaml-export, and yaml-import:

mappyfile format raster.map formatted_raster.map
mappyfile validate D:\ms-ogc-workshop\ms4w\apps\ms-ogc-workshop\**\*.map
mappyfile schema mapfile-schema-8-0.json --version=8.0
mappyfile yaml-export raster.map raster.yaml
mappyfile yaml-import raster.yaml raster.map

Authors

Contributors

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

mappyfile-1.2.0.tar.gz (114.5 kB view details)

Uploaded Source

Built Distribution

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

mappyfile-1.2.0-py2.py3-none-any.whl (65.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file mappyfile-1.2.0.tar.gz.

File metadata

  • Download URL: mappyfile-1.2.0.tar.gz
  • Upload date:
  • Size: 114.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mappyfile-1.2.0.tar.gz
Algorithm Hash digest
SHA256 62698b7c4d10662948912f9466ea2cfa4ddf94038a20a7cd91e00e40641d7bb9
MD5 a125424386f48638bddd5cfffe803027
BLAKE2b-256 b965e3c10b5f2fbd6b9b46c89feb39cf01f13dcb099ffad80fca38cc3b5054a3

See more details on using hashes here.

File details

Details for the file mappyfile-1.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: mappyfile-1.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 65.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mappyfile-1.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0b875a35035f6fc712b153b134de27bdcbb42f732a5a05801c9bead7a123fa72
MD5 69ae6561a0020cfe093a05d6e7c1644b
BLAKE2b-256 4de22b8bd1befdec49b11e356d827ed0c97b34704816f7a04410efedac2744b8

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