Subway Preprocessor and Validator
Find a file
2017-11-10 15:15:30 +03:00
scripts Support for route=train 2017-11-09 12:24:03 +03:00
stop_areas Update overpass query and reverse coordinates in make_stop_areas 2017-11-09 11:16:20 +03:00
.gitignore Ignore *.pyc 2017-11-03 09:53:06 +03:00
css_colours.py Resolving CSS colours 2017-11-01 11:48:45 +03:00
LICENSE Initial commit 2017-10-04 15:58:58 +03:00
mapsme_subways.py Fix collecting members outside a stop_area, and use interval=* tags 2017-11-10 15:15:30 +03:00
README.md Support multiple modes for a station 2017-10-26 11:56:07 +03:00
subway_structure.py Fix collecting members outside a stop_area, and use interval=* tags 2017-11-10 15:15:30 +03:00
v2h_templates.py Support for writing multiple yaml and geojson files at once, fixes #28 2017-11-10 11:36:25 +03:00
validation_to_html.py Support for writing multiple yaml and geojson files at once, fixes #28 2017-11-10 11:36:25 +03:00

Subway Preprocessor

Here you see a list of scripts that can be used for preprocessing all the metro systems in the world from OpenStreetMap. subway_structure.py produces a list of disjunct systems that can be used for routing and for displaying of metro maps.

How To Validate

  • Download or update a planet file in o5m format (using osmconvert and osmupdate).
  • Use filter_all_subways.sh to extract a portion of data for all subways.
  • Run mapsme_subways.py -x filtered_data.osm to build metro structures and receive a validation log.
  • Run validation_to_html.py on that log to create readable HTML tables.

Validation Script

There is a process_subways.sh in the scripts directory. The author uses it for updating both the planet and a city he's working on. Here is an example of a script for updating the London Underground network:

PLANET_PATH=$HOME/osm/planet
export OSMCTOOLS="$PLANET_PATH"
export PLANET="$PLANET_PATH/london.o5m"
export HTML_DIR=tmp_html
export BBOX=-0.681152,51.286758,0.334015,51.740636
export CITY="London"
export DUMP=london.yaml

scripts/process_subways.sh

The bounding box can be found in the Google Spreadsheet. If you are okay with rare updates, use this website.

Adding Stop Areas To OSM

To quickly add stop_area relations for the entire city, use the make_stop_areas.py script from the stop_area directory. Give it a bounding box or a .json file download from Overpass API. It would produce an JOSM XML file that you should manually check in JOSM. After that just upload it.

Author and License

All scripts were written by Ilya Zverev for MAPS.ME. Published under Apache Licence 2.0.