This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2018-02-25 23:06:14 -05:00
bin/osmosis Update to latest binary releases (osmosis, mapsforge) 2018-02-25 23:06:14 -05:00
lists Add Pennsylvania list 2018-02-25 22:32:17 -05:00
.gitignore Add support for map download caching 2018-02-25 15:09:36 -05:00
azure_notes.md Update azure notes, readme, add download tool for caching source maps 2018-02-25 16:50:00 -05:00
download_maps.py Update azure notes, readme, add download tool for caching source maps 2018-02-25 16:50:00 -05:00
LICENSE-APACHE-2.0.txt Added licencing 2016-01-12 17:51:36 -05:00
LICENSE-CC-BY-SA-3.0.html Added licencing 2016-01-12 17:51:36 -05:00
manual_processing.md Update docs to be more useful 2017-01-20 12:38:42 -05:00
poi-mapping.xml Bump mapsforge writer version, prep for mapsforge POI output 2016-08-28 13:07:03 -04:00
process_maps.py Add support for map download caching 2018-02-25 15:09:36 -05:00
README.md Update azure notes, readme, add download tool for caching source maps 2018-02-25 16:50:00 -05:00

Overview

This project contains useful info/tools for processing OSM maps into the mapwriter file format (.map). It was developed to help generating offline map files for Locus on Android.

Dependencies / Prereqs

To run this program you'll need the following

  • A Linux environment
  • Python 3.x installed
  • Java 1.8 or higher installed (OpenJDK works)
  • wget installed
  • bunzip2 installed (usually part of bzip2 package)

Installation

Head over to releases tab and download the latest. Extract the file and you're good to go. Everything is self-contained minus the above dependencies.

Running

To run the program, cd to the directory where you extracted the release and run './process_maps.py' with at least one '--map-list /path/to/list.txt parameter'. See the lists directory for examples on how to format the map list files.

Program Usage

usage: process_maps.py [-h] [--map-list MAP_LIST] [--no-sleep] [--use-ram]
                       [--max-heap-space MAX_HEAP_SPACE]
                       [--output-map-name OUTPUT_MAP_NAME]
                       [--cached-maps-dir CACHED_MAPS_DIR]

optional arguments:
  -h, --help            show this help message and exit
  --map-list MAP_LIST   a text file with one map URL per line, can be
                        specified more than once
  --no-sleep            don't sleep between downloads -- WARNING you can
                        easily run into throttling on mirrors if you use this
                        option
  --use-ram             use RAM for mapsforge processing -- WARNING mapsforge
                        uses 10x the map size in RAM for processing (ie. 100Mb
                        map = 1Gb RAM usage), you want a LOT of RAM for this
                        option
  --max-heap-space MAX_HEAP_SPACE
                        set the max heap space for the JVM, use standard -Xmx
                        values, default (4g) should be fine if not using
                        --use-ram argument
  --output-map-name OUTPUT_MAP_NAME
                        set the output .map and .poi file names
  --cached-maps-dir CACHED_MAPS_DIR
                        Use cached maps in the specified directory instead of
                        downloads using map lists

Examples

./process_maps.py --max-heap-space 48g \
    --output-map-name central_america \
    --cached-maps-dir ~/osmmapdata/cache/central_america/20180225-1429

./process_maps.py --use-ram --max-heap-space 48g \
    --output-map-name midwest \
    --cached-maps-dir ~/osmmapdata/cache/midwest/20180225-1429

./process_maps.py --use-ram --max-heap-space 48g \
    --output-map-name south_america \
    --cached-maps-dir ~/osmmapdata/cache/south_america/20180225-1429

Caching maps for re-use / re-processing

Included in the repo there is a download_maps.py script that is meant to help with downloading maps on a schedule or for caching. It uses the same logic as the main script but for download only.

Program usage

usage: download_maps.py [-h] [--map-list MAP_LIST] [--no-sleep]
                        [--output-map-name OUTPUT_MAP_NAME]
                        [--cached-maps-dir CACHED_MAPS_DIR]

optional arguments:
  -h, --help            show this help message and exit
  --map-list MAP_LIST   a text file with one map URL per line, can be
                        specified more than once
  --no-sleep            don't sleep between downloads -- WARNING you can
                        easily run into throttling on mirrors if you use this
                        option
  --output-map-name OUTPUT_MAP_NAME
                        set the name of the map directory before Ymd-HM
  --cached-maps-dir CACHED_MAPS_DIR
                        The root directory where maps should be cached

Example Usage

./download_maps.py --cached-maps-dir ./cache \
    --output-map-name central_america
    --map-list lists/pbf/central_america.txt

./download_maps.py --cached-maps-dir ./cache \
    --output-map-name midwest
    --map-list lists/pbf/midwest.txt

./download_maps.py --cached-maps-dir ./cache \
    --output-map-name south_america
    --map-list lists/pbf/south_america.txt

Licencing

All code is licensed Apache 2.0 and all non-code is licensed Creative Commons CC-BY-SA-3.0