├── .chglog ├── CHANGELOG.tpl.md └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── git-release-pre.yml │ ├── git-release-test.yml │ ├── git-release.yml │ └── tests.yml ├── .gitignore ├── .pylintrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── conda_env ├── gdal-dev.yml └── gdal-user.yml ├── copyFilesToDist.sh ├── device_themes ├── theme_adjusted │ └── mapsforge-bolt.xml ├── theme_initial │ ├── mapsforge-bolt.xml │ ├── mapsforge-roam.xml │ └── vtm-elemnt.xml └── vtm_theme_poi │ ├── COLORS.html │ ├── icons │ ├── bakery.svg │ ├── cafe.svg │ ├── drinking_water.svg │ ├── fuel.svg │ ├── shop_bicycle.svg │ └── train_station.svg │ └── vtm-elemnt.xml ├── docs ├── CONTRIBUTING.md ├── COPY_TO_WAHOO.md ├── FAQ.md ├── HOWTO_ADD_ROUTING_TILES_MANUALLY.MD ├── QUICKSTART_ANACONDA.md ├── TAGS_ON_MAP_AND_DEVICE.md ├── USAGE.md ├── USAGE_CRUISER.md └── pictures │ ├── cruiser-map-selection.png │ ├── cruiser-theme-selection.png │ ├── cruiser-ui-elements.png │ ├── gui.png │ ├── maps-american_samoa-generated.png │ ├── maps-american_samoa-wahoo.png │ ├── maps-file-structure.png │ ├── unittest-land-poligons.png │ ├── wahoo_elemnt_bolt.png │ ├── wahoo_elemnt_bolt_poi1.png │ └── wahoo_elemnt_bolt_poi2.png ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py ├── resources │ ├── geofabrik-2023-02-26.json │ ├── liechtenstein-latest_2021-10-31.osm.pbf │ ├── macos │ │ ├── 134 │ │ │ ├── 89 │ │ │ │ ├── land.prj │ │ │ │ ├── land.shp │ │ │ │ ├── land.shx │ │ │ │ ├── land1.osm │ │ │ │ ├── merged.osm.pbf │ │ │ │ ├── sea.osm │ │ │ │ ├── split-liechtenstein-names.osm.pbf │ │ │ │ └── split-liechtenstein.osm.pbf │ │ │ ├── 89.map │ │ │ ├── 89.map.lzma │ │ │ └── 89.map.lzma.17 │ │ ├── 137 │ │ │ ├── 100 │ │ │ │ ├── land.prj │ │ │ │ ├── land.shp │ │ │ │ ├── land.shx │ │ │ │ ├── land1.osm │ │ │ │ ├── merged.osm.pbf │ │ │ │ ├── sea.osm │ │ │ │ ├── split-malta-names.osm.pbf │ │ │ │ └── split-malta.osm.pbf │ │ │ ├── 100.map │ │ │ ├── 100.map.lzma │ │ │ └── 100.map.lzma.17 │ │ ├── 138 │ │ │ ├── 100 │ │ │ │ ├── land.prj │ │ │ │ ├── land.shp │ │ │ │ ├── land.shx │ │ │ │ ├── land1.osm │ │ │ │ ├── merged.osm.pbf │ │ │ │ ├── sea.osm │ │ │ │ ├── split-malta-names.osm.pbf │ │ │ │ └── split-malta.osm.pbf │ │ │ ├── 100.map │ │ │ ├── 100.map.lzma │ │ │ └── 100.map.lzma.17 │ │ ├── liechtenstein │ │ │ ├── filtered.o5m.pbf │ │ │ └── filtered_names.o5m.pbf │ │ └── malta │ │ │ ├── filtered.o5m.pbf │ │ │ └── filtered_names.o5m.pbf │ ├── malta-latest_2021-10-31.osm.pbf │ └── windows │ │ ├── 134 │ │ ├── 89 │ │ │ ├── land.prj │ │ │ ├── land.shp │ │ │ ├── land.shx │ │ │ ├── land1.osm │ │ │ ├── merged.osm.pbf │ │ │ ├── sea.osm │ │ │ ├── split-liechtenstein-names.osm.pbf │ │ │ └── split-liechtenstein.osm.pbf │ │ ├── 89.map │ │ ├── 89.map.lzma │ │ └── 89.map.lzma.17 │ │ ├── 137 │ │ ├── 100 │ │ │ ├── land.prj │ │ │ ├── land.shp │ │ │ ├── land.shx │ │ │ ├── land1.osm │ │ │ ├── merged.osm.pbf │ │ │ ├── sea.osm │ │ │ ├── split-malta-names.osm.pbf │ │ │ └── split-malta.osm.pbf │ │ ├── 100.map │ │ ├── 100.map.lzma │ │ └── 100.map.lzma.17 │ │ ├── 138 │ │ ├── 100 │ │ │ ├── land.prj │ │ │ ├── land.shp │ │ │ ├── land.shx │ │ │ ├── land1.osm │ │ │ ├── merged.osm.pbf │ │ │ ├── sea.osm │ │ │ ├── split-malta-names.osm.pbf │ │ │ └── split-malta.osm.pbf │ │ ├── 100.map │ │ ├── 100.map.lzma │ │ └── 100.map.lzma.17 │ │ ├── liechtenstein │ │ ├── filtered.o5m │ │ ├── filtered_names.o5m │ │ └── outFile.o5m │ │ └── malta │ │ ├── filtered.o5m │ │ ├── filtered_names.o5m │ │ └── outFile.o5m ├── test_cli.py ├── test_constants.py ├── test_constants_geofabrik.py ├── test_downloader.py ├── test_generated_files.py ├── test_geofabrik.py ├── test_osm_maps.py └── test_setup.py ├── tooling ├── map-info.py └── wahoomc.svg └── wahoomc ├── __init__.py ├── __main__.py ├── constants.py ├── constants_functions.py ├── downloader.py ├── file_directory_functions.py ├── geofabrik.py ├── geofabrik_json.py ├── init ├── __init__.py └── __main__.py ├── input.py ├── main.py ├── osm_data.py ├── osm_maps_functions.py ├── resources ├── sea.osm ├── shape2osm.py ├── tag_wahoo_adjusted │ ├── tag-wahoo-poi.xml │ └── tag-wahoo.xml ├── tag_wahoo_initial │ └── tag-wahoo_original.xml ├── tags-to-keep.json └── tunnel-transform.xml ├── setup_functions.py ├── timings.py └── tooling_win ├── 7za.dll ├── 7za.exe ├── 7zxa.dll ├── lzma.exe ├── osmconvert.exe └── osmconvert64-0.8.8p.exe /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/git-release-pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/workflows/git-release-pre.yml -------------------------------------------------------------------------------- /.github/workflows/git-release-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/workflows/git-release-test.yml -------------------------------------------------------------------------------- /.github/workflows/git-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/workflows/git-release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/README.md -------------------------------------------------------------------------------- /conda_env/gdal-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/conda_env/gdal-dev.yml -------------------------------------------------------------------------------- /conda_env/gdal-user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/conda_env/gdal-user.yml -------------------------------------------------------------------------------- /copyFilesToDist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/copyFilesToDist.sh -------------------------------------------------------------------------------- /device_themes/theme_adjusted/mapsforge-bolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/theme_adjusted/mapsforge-bolt.xml -------------------------------------------------------------------------------- /device_themes/theme_initial/mapsforge-bolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/theme_initial/mapsforge-bolt.xml -------------------------------------------------------------------------------- /device_themes/theme_initial/mapsforge-roam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/theme_initial/mapsforge-roam.xml -------------------------------------------------------------------------------- /device_themes/theme_initial/vtm-elemnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/theme_initial/vtm-elemnt.xml -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/COLORS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/COLORS.html -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/bakery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/bakery.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/cafe.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/drinking_water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/drinking_water.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/fuel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/fuel.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/shop_bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/shop_bicycle.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/icons/train_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/icons/train_station.svg -------------------------------------------------------------------------------- /device_themes/vtm_theme_poi/vtm-elemnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/device_themes/vtm_theme_poi/vtm-elemnt.xml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/COPY_TO_WAHOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/COPY_TO_WAHOO.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/HOWTO_ADD_ROUTING_TILES_MANUALLY.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/HOWTO_ADD_ROUTING_TILES_MANUALLY.MD -------------------------------------------------------------------------------- /docs/QUICKSTART_ANACONDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/QUICKSTART_ANACONDA.md -------------------------------------------------------------------------------- /docs/TAGS_ON_MAP_AND_DEVICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/TAGS_ON_MAP_AND_DEVICE.md -------------------------------------------------------------------------------- /docs/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/USAGE.md -------------------------------------------------------------------------------- /docs/USAGE_CRUISER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/USAGE_CRUISER.md -------------------------------------------------------------------------------- /docs/pictures/cruiser-map-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/cruiser-map-selection.png -------------------------------------------------------------------------------- /docs/pictures/cruiser-theme-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/cruiser-theme-selection.png -------------------------------------------------------------------------------- /docs/pictures/cruiser-ui-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/cruiser-ui-elements.png -------------------------------------------------------------------------------- /docs/pictures/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/gui.png -------------------------------------------------------------------------------- /docs/pictures/maps-american_samoa-generated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/maps-american_samoa-generated.png -------------------------------------------------------------------------------- /docs/pictures/maps-american_samoa-wahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/maps-american_samoa-wahoo.png -------------------------------------------------------------------------------- /docs/pictures/maps-file-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/maps-file-structure.png -------------------------------------------------------------------------------- /docs/pictures/unittest-land-poligons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/unittest-land-poligons.png -------------------------------------------------------------------------------- /docs/pictures/wahoo_elemnt_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/wahoo_elemnt_bolt.png -------------------------------------------------------------------------------- /docs/pictures/wahoo_elemnt_bolt_poi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/wahoo_elemnt_bolt_poi1.png -------------------------------------------------------------------------------- /docs/pictures/wahoo_elemnt_bolt_poi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/docs/pictures/wahoo_elemnt_bolt_poi2.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/geofabrik-2023-02-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/geofabrik-2023-02-26.json -------------------------------------------------------------------------------- /tests/resources/liechtenstein-latest_2021-10-31.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/liechtenstein-latest_2021-10-31.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/134/89.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89.map -------------------------------------------------------------------------------- /tests/resources/macos/134/89.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89.map.lzma -------------------------------------------------------------------------------- /tests/resources/macos/134/89.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/macos/134/89/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/land.prj -------------------------------------------------------------------------------- /tests/resources/macos/134/89/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/land.shp -------------------------------------------------------------------------------- /tests/resources/macos/134/89/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/land.shx -------------------------------------------------------------------------------- /tests/resources/macos/134/89/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/land1.osm -------------------------------------------------------------------------------- /tests/resources/macos/134/89/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/134/89/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/sea.osm -------------------------------------------------------------------------------- /tests/resources/macos/134/89/split-liechtenstein-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/split-liechtenstein-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/134/89/split-liechtenstein.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/134/89/split-liechtenstein.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/137/100.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100.map -------------------------------------------------------------------------------- /tests/resources/macos/137/100.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100.map.lzma -------------------------------------------------------------------------------- /tests/resources/macos/137/100.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/macos/137/100/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/land.prj -------------------------------------------------------------------------------- /tests/resources/macos/137/100/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/land.shp -------------------------------------------------------------------------------- /tests/resources/macos/137/100/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/land.shx -------------------------------------------------------------------------------- /tests/resources/macos/137/100/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/land1.osm -------------------------------------------------------------------------------- /tests/resources/macos/137/100/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/137/100/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/sea.osm -------------------------------------------------------------------------------- /tests/resources/macos/137/100/split-malta-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/split-malta-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/137/100/split-malta.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/137/100/split-malta.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/138/100.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100.map -------------------------------------------------------------------------------- /tests/resources/macos/138/100.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100.map.lzma -------------------------------------------------------------------------------- /tests/resources/macos/138/100.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/macos/138/100/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/land.prj -------------------------------------------------------------------------------- /tests/resources/macos/138/100/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/land.shp -------------------------------------------------------------------------------- /tests/resources/macos/138/100/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/land.shx -------------------------------------------------------------------------------- /tests/resources/macos/138/100/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/land1.osm -------------------------------------------------------------------------------- /tests/resources/macos/138/100/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/138/100/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/sea.osm -------------------------------------------------------------------------------- /tests/resources/macos/138/100/split-malta-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/split-malta-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/138/100/split-malta.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/138/100/split-malta.osm.pbf -------------------------------------------------------------------------------- /tests/resources/macos/liechtenstein/filtered.o5m.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/liechtenstein/filtered.o5m.pbf -------------------------------------------------------------------------------- /tests/resources/macos/liechtenstein/filtered_names.o5m.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/liechtenstein/filtered_names.o5m.pbf -------------------------------------------------------------------------------- /tests/resources/macos/malta/filtered.o5m.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/malta/filtered.o5m.pbf -------------------------------------------------------------------------------- /tests/resources/macos/malta/filtered_names.o5m.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/macos/malta/filtered_names.o5m.pbf -------------------------------------------------------------------------------- /tests/resources/malta-latest_2021-10-31.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/malta-latest_2021-10-31.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/134/89.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89.map -------------------------------------------------------------------------------- /tests/resources/windows/134/89.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89.map.lzma -------------------------------------------------------------------------------- /tests/resources/windows/134/89.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/windows/134/89/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/land.prj -------------------------------------------------------------------------------- /tests/resources/windows/134/89/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/land.shp -------------------------------------------------------------------------------- /tests/resources/windows/134/89/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/land.shx -------------------------------------------------------------------------------- /tests/resources/windows/134/89/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/land1.osm -------------------------------------------------------------------------------- /tests/resources/windows/134/89/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/134/89/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/sea.osm -------------------------------------------------------------------------------- /tests/resources/windows/134/89/split-liechtenstein-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/split-liechtenstein-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/134/89/split-liechtenstein.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/134/89/split-liechtenstein.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/137/100.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100.map -------------------------------------------------------------------------------- /tests/resources/windows/137/100.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100.map.lzma -------------------------------------------------------------------------------- /tests/resources/windows/137/100.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/windows/137/100/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/land.prj -------------------------------------------------------------------------------- /tests/resources/windows/137/100/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/land.shp -------------------------------------------------------------------------------- /tests/resources/windows/137/100/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/land.shx -------------------------------------------------------------------------------- /tests/resources/windows/137/100/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/land1.osm -------------------------------------------------------------------------------- /tests/resources/windows/137/100/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/137/100/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/sea.osm -------------------------------------------------------------------------------- /tests/resources/windows/137/100/split-malta-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/split-malta-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/137/100/split-malta.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/137/100/split-malta.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/138/100.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100.map -------------------------------------------------------------------------------- /tests/resources/windows/138/100.map.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100.map.lzma -------------------------------------------------------------------------------- /tests/resources/windows/138/100.map.lzma.17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/windows/138/100/land.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/land.prj -------------------------------------------------------------------------------- /tests/resources/windows/138/100/land.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/land.shp -------------------------------------------------------------------------------- /tests/resources/windows/138/100/land.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/land.shx -------------------------------------------------------------------------------- /tests/resources/windows/138/100/land1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/land1.osm -------------------------------------------------------------------------------- /tests/resources/windows/138/100/merged.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/merged.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/138/100/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/sea.osm -------------------------------------------------------------------------------- /tests/resources/windows/138/100/split-malta-names.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/split-malta-names.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/138/100/split-malta.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/138/100/split-malta.osm.pbf -------------------------------------------------------------------------------- /tests/resources/windows/liechtenstein/filtered.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/liechtenstein/filtered.o5m -------------------------------------------------------------------------------- /tests/resources/windows/liechtenstein/filtered_names.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/liechtenstein/filtered_names.o5m -------------------------------------------------------------------------------- /tests/resources/windows/liechtenstein/outFile.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/liechtenstein/outFile.o5m -------------------------------------------------------------------------------- /tests/resources/windows/malta/filtered.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/malta/filtered.o5m -------------------------------------------------------------------------------- /tests/resources/windows/malta/filtered_names.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/malta/filtered_names.o5m -------------------------------------------------------------------------------- /tests/resources/windows/malta/outFile.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/resources/windows/malta/outFile.o5m -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_constants_geofabrik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_constants_geofabrik.py -------------------------------------------------------------------------------- /tests/test_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_downloader.py -------------------------------------------------------------------------------- /tests/test_generated_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_generated_files.py -------------------------------------------------------------------------------- /tests/test_geofabrik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_geofabrik.py -------------------------------------------------------------------------------- /tests/test_osm_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_osm_maps.py -------------------------------------------------------------------------------- /tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tests/test_setup.py -------------------------------------------------------------------------------- /tooling/map-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tooling/map-info.py -------------------------------------------------------------------------------- /tooling/wahoomc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/tooling/wahoomc.svg -------------------------------------------------------------------------------- /wahoomc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wahoomc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/__main__.py -------------------------------------------------------------------------------- /wahoomc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/constants.py -------------------------------------------------------------------------------- /wahoomc/constants_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/constants_functions.py -------------------------------------------------------------------------------- /wahoomc/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/downloader.py -------------------------------------------------------------------------------- /wahoomc/file_directory_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/file_directory_functions.py -------------------------------------------------------------------------------- /wahoomc/geofabrik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/geofabrik.py -------------------------------------------------------------------------------- /wahoomc/geofabrik_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/geofabrik_json.py -------------------------------------------------------------------------------- /wahoomc/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wahoomc/init/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/init/__main__.py -------------------------------------------------------------------------------- /wahoomc/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/input.py -------------------------------------------------------------------------------- /wahoomc/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/main.py -------------------------------------------------------------------------------- /wahoomc/osm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/osm_data.py -------------------------------------------------------------------------------- /wahoomc/osm_maps_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/osm_maps_functions.py -------------------------------------------------------------------------------- /wahoomc/resources/sea.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/sea.osm -------------------------------------------------------------------------------- /wahoomc/resources/shape2osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/shape2osm.py -------------------------------------------------------------------------------- /wahoomc/resources/tag_wahoo_adjusted/tag-wahoo-poi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/tag_wahoo_adjusted/tag-wahoo-poi.xml -------------------------------------------------------------------------------- /wahoomc/resources/tag_wahoo_adjusted/tag-wahoo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/tag_wahoo_adjusted/tag-wahoo.xml -------------------------------------------------------------------------------- /wahoomc/resources/tag_wahoo_initial/tag-wahoo_original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/tag_wahoo_initial/tag-wahoo_original.xml -------------------------------------------------------------------------------- /wahoomc/resources/tags-to-keep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/tags-to-keep.json -------------------------------------------------------------------------------- /wahoomc/resources/tunnel-transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/resources/tunnel-transform.xml -------------------------------------------------------------------------------- /wahoomc/setup_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/setup_functions.py -------------------------------------------------------------------------------- /wahoomc/timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/timings.py -------------------------------------------------------------------------------- /wahoomc/tooling_win/7za.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/7za.dll -------------------------------------------------------------------------------- /wahoomc/tooling_win/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/7za.exe -------------------------------------------------------------------------------- /wahoomc/tooling_win/7zxa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/7zxa.dll -------------------------------------------------------------------------------- /wahoomc/tooling_win/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/lzma.exe -------------------------------------------------------------------------------- /wahoomc/tooling_win/osmconvert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/osmconvert.exe -------------------------------------------------------------------------------- /wahoomc/tooling_win/osmconvert64-0.8.8p.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treee111/wahooMapsCreator/HEAD/wahoomc/tooling_win/osmconvert64-0.8.8p.exe --------------------------------------------------------------------------------