├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .gitattributes ├── .githooks ├── commit-msg ├── pre-commit └── pre-push ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── VERSION ├── data ├── collections.json ├── dictionary.xml └── pylintrc ├── doc ├── INSTALL.md ├── author.svg ├── buildings.svg ├── bus_stop.png ├── colors.svg ├── grid.svg ├── icons_emergency.svg ├── icons_japanese.svg ├── icons_power.svg ├── indoor.svg ├── josm.png ├── lanes.svg ├── leaflet.html ├── mast.svg ├── moi │ ├── contributing.moi │ ├── install.moi │ └── readme.moi ├── power.svg ├── surveillance.svg ├── time.svg ├── trees.svg ├── viewpoints.svg └── volcano.svg ├── map_machine ├── __init__.py ├── __main__.py ├── color.py ├── constructor.py ├── doc │ ├── __init__.py │ ├── doc_collections.py │ ├── icons.py │ ├── moire_manager.py │ ├── preview.py │ ├── taginfo.py │ └── wiki.py ├── drawing.py ├── element │ ├── __init__.py │ ├── element.py │ ├── grid.py │ └── way.py ├── feature │ ├── __init__.py │ ├── building.py │ ├── crater.py │ ├── direction.py │ ├── road.py │ └── tree.py ├── figure.py ├── geometry │ ├── __init__.py │ ├── bounding_box.py │ ├── flinger.py │ └── vector.py ├── icons │ ├── LICENSE │ ├── colors.svg │ ├── config.json │ └── icons.svg ├── main.py ├── map_configuration.py ├── mapcss.py ├── mapper.py ├── osm │ ├── __init__.py │ ├── osm_getter.py │ ├── osm_reader.py │ └── tags.py ├── pictogram │ ├── __init__.py │ ├── icon.py │ ├── icon_collection.py │ └── point.py ├── scheme.py ├── scheme │ └── default.yml ├── slippy │ ├── __init__.py │ ├── server.py │ └── tile.py ├── text.py ├── ui │ ├── __init__.py │ ├── cli.py │ └── completion.py ├── util.py └── workspace.py ├── pyproject.toml └── tests ├── __init__.py ├── data ├── 10.000,20.000,10.001,20.001.osm ├── 39.999,49.999,40.002,50.002.osm ├── tag_tests.json └── tree.osm ├── test_bounding_box.py ├── test_color.py ├── test_command_line.py ├── test_completion.py ├── test_direction.py ├── test_flinger.py ├── test_icons.py ├── test_label.py ├── test_mapcss.py ├── test_osm_reader.py ├── test_road.py ├── test_scheme.py ├── test_style.py ├── test_tag.py ├── test_taginfo.py ├── test_text.py ├── test_vector.py ├── test_ways.py └── test_zoom_level.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .git/ 3 | tests/ 4 | 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg -diff 2 | -------------------------------------------------------------------------------- /.githooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.githooks/commit-msg -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.githooks/pre-push -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.0 2 | -------------------------------------------------------------------------------- /data/collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/data/collections.json -------------------------------------------------------------------------------- /data/dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/data/dictionary.xml -------------------------------------------------------------------------------- /data/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/data/pylintrc -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/author.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/author.svg -------------------------------------------------------------------------------- /doc/buildings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/buildings.svg -------------------------------------------------------------------------------- /doc/bus_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/bus_stop.png -------------------------------------------------------------------------------- /doc/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/colors.svg -------------------------------------------------------------------------------- /doc/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/grid.svg -------------------------------------------------------------------------------- /doc/icons_emergency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/icons_emergency.svg -------------------------------------------------------------------------------- /doc/icons_japanese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/icons_japanese.svg -------------------------------------------------------------------------------- /doc/icons_power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/icons_power.svg -------------------------------------------------------------------------------- /doc/indoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/indoor.svg -------------------------------------------------------------------------------- /doc/josm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/josm.png -------------------------------------------------------------------------------- /doc/lanes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/lanes.svg -------------------------------------------------------------------------------- /doc/leaflet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/leaflet.html -------------------------------------------------------------------------------- /doc/mast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/mast.svg -------------------------------------------------------------------------------- /doc/moi/contributing.moi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/moi/contributing.moi -------------------------------------------------------------------------------- /doc/moi/install.moi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/moi/install.moi -------------------------------------------------------------------------------- /doc/moi/readme.moi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/moi/readme.moi -------------------------------------------------------------------------------- /doc/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/power.svg -------------------------------------------------------------------------------- /doc/surveillance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/surveillance.svg -------------------------------------------------------------------------------- /doc/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/time.svg -------------------------------------------------------------------------------- /doc/trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/trees.svg -------------------------------------------------------------------------------- /doc/viewpoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/viewpoints.svg -------------------------------------------------------------------------------- /doc/volcano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/doc/volcano.svg -------------------------------------------------------------------------------- /map_machine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/__init__.py -------------------------------------------------------------------------------- /map_machine/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/__main__.py -------------------------------------------------------------------------------- /map_machine/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/color.py -------------------------------------------------------------------------------- /map_machine/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/constructor.py -------------------------------------------------------------------------------- /map_machine/doc/__init__.py: -------------------------------------------------------------------------------- 1 | """Documentation utilities.""" 2 | -------------------------------------------------------------------------------- /map_machine/doc/doc_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/doc_collections.py -------------------------------------------------------------------------------- /map_machine/doc/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/icons.py -------------------------------------------------------------------------------- /map_machine/doc/moire_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/moire_manager.py -------------------------------------------------------------------------------- /map_machine/doc/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/preview.py -------------------------------------------------------------------------------- /map_machine/doc/taginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/taginfo.py -------------------------------------------------------------------------------- /map_machine/doc/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/doc/wiki.py -------------------------------------------------------------------------------- /map_machine/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/drawing.py -------------------------------------------------------------------------------- /map_machine/element/__init__.py: -------------------------------------------------------------------------------- 1 | """Drawing of separate map elements.""" 2 | -------------------------------------------------------------------------------- /map_machine/element/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/element/element.py -------------------------------------------------------------------------------- /map_machine/element/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/element/grid.py -------------------------------------------------------------------------------- /map_machine/element/way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/element/way.py -------------------------------------------------------------------------------- /map_machine/feature/__init__.py: -------------------------------------------------------------------------------- 1 | """Specific map features: roads, directions, etc.""" 2 | -------------------------------------------------------------------------------- /map_machine/feature/building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/feature/building.py -------------------------------------------------------------------------------- /map_machine/feature/crater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/feature/crater.py -------------------------------------------------------------------------------- /map_machine/feature/direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/feature/direction.py -------------------------------------------------------------------------------- /map_machine/feature/road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/feature/road.py -------------------------------------------------------------------------------- /map_machine/feature/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/feature/tree.py -------------------------------------------------------------------------------- /map_machine/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/figure.py -------------------------------------------------------------------------------- /map_machine/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | """Map geometry: dealing with coordinates, projections.""" 2 | -------------------------------------------------------------------------------- /map_machine/geometry/bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/geometry/bounding_box.py -------------------------------------------------------------------------------- /map_machine/geometry/flinger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/geometry/flinger.py -------------------------------------------------------------------------------- /map_machine/geometry/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/geometry/vector.py -------------------------------------------------------------------------------- /map_machine/icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/icons/LICENSE -------------------------------------------------------------------------------- /map_machine/icons/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/icons/colors.svg -------------------------------------------------------------------------------- /map_machine/icons/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/icons/config.json -------------------------------------------------------------------------------- /map_machine/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/icons/icons.svg -------------------------------------------------------------------------------- /map_machine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/main.py -------------------------------------------------------------------------------- /map_machine/map_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/map_configuration.py -------------------------------------------------------------------------------- /map_machine/mapcss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/mapcss.py -------------------------------------------------------------------------------- /map_machine/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/mapper.py -------------------------------------------------------------------------------- /map_machine/osm/__init__.py: -------------------------------------------------------------------------------- 1 | """OpenStreetMap-specific things.""" 2 | -------------------------------------------------------------------------------- /map_machine/osm/osm_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/osm/osm_getter.py -------------------------------------------------------------------------------- /map_machine/osm/osm_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/osm/osm_reader.py -------------------------------------------------------------------------------- /map_machine/osm/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/osm/tags.py -------------------------------------------------------------------------------- /map_machine/pictogram/__init__.py: -------------------------------------------------------------------------------- 1 | """Icons and points.""" 2 | -------------------------------------------------------------------------------- /map_machine/pictogram/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/pictogram/icon.py -------------------------------------------------------------------------------- /map_machine/pictogram/icon_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/pictogram/icon_collection.py -------------------------------------------------------------------------------- /map_machine/pictogram/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/pictogram/point.py -------------------------------------------------------------------------------- /map_machine/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/scheme.py -------------------------------------------------------------------------------- /map_machine/scheme/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/scheme/default.yml -------------------------------------------------------------------------------- /map_machine/slippy/__init__.py: -------------------------------------------------------------------------------- 1 | """Tiles generation for slippy maps.""" 2 | -------------------------------------------------------------------------------- /map_machine/slippy/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/slippy/server.py -------------------------------------------------------------------------------- /map_machine/slippy/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/slippy/tile.py -------------------------------------------------------------------------------- /map_machine/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/text.py -------------------------------------------------------------------------------- /map_machine/ui/__init__.py: -------------------------------------------------------------------------------- 1 | """User interface.""" 2 | -------------------------------------------------------------------------------- /map_machine/ui/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/ui/cli.py -------------------------------------------------------------------------------- /map_machine/ui/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/ui/completion.py -------------------------------------------------------------------------------- /map_machine/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/util.py -------------------------------------------------------------------------------- /map_machine/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/map_machine/workspace.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/10.000,20.000,10.001,20.001.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/data/10.000,20.000,10.001,20.001.osm -------------------------------------------------------------------------------- /tests/data/39.999,49.999,40.002,50.002.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/data/39.999,49.999,40.002,50.002.osm -------------------------------------------------------------------------------- /tests/data/tag_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/data/tag_tests.json -------------------------------------------------------------------------------- /tests/data/tree.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/data/tree.osm -------------------------------------------------------------------------------- /tests/test_bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_bounding_box.py -------------------------------------------------------------------------------- /tests/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_color.py -------------------------------------------------------------------------------- /tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_command_line.py -------------------------------------------------------------------------------- /tests/test_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_completion.py -------------------------------------------------------------------------------- /tests/test_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_direction.py -------------------------------------------------------------------------------- /tests/test_flinger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_flinger.py -------------------------------------------------------------------------------- /tests/test_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_icons.py -------------------------------------------------------------------------------- /tests/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_label.py -------------------------------------------------------------------------------- /tests/test_mapcss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_mapcss.py -------------------------------------------------------------------------------- /tests/test_osm_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_osm_reader.py -------------------------------------------------------------------------------- /tests/test_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_road.py -------------------------------------------------------------------------------- /tests/test_scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_scheme.py -------------------------------------------------------------------------------- /tests/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_style.py -------------------------------------------------------------------------------- /tests/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_tag.py -------------------------------------------------------------------------------- /tests/test_taginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_taginfo.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_vector.py -------------------------------------------------------------------------------- /tests/test_ways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_ways.py -------------------------------------------------------------------------------- /tests/test_zoom_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzet/map-machine/HEAD/tests/test_zoom_level.py --------------------------------------------------------------------------------