abstreet/data/get_fresh_osm.sh

14 lines
564 B
Bash
Raw Normal View History

#!/bin/bash
# This tool needs https://wiki.openstreetmap.org/wiki/Osmupdate#Download
set -e
# From http://download.geofabrik.de/north-america/us/washington.html
2019-12-03 23:29:57 +03:00
curl -L -O http://download.geofabrik.de/north-america/us/washington-latest.osm.pbf
osmupdate -v washington-latest.osm.pbf updated_wa.osm.pbf
2019-12-03 23:25:33 +03:00
rm -fv washington-latest.osm.pbf data/input/osm/*.osm
osmconvert updated_wa.osm.pbf -B=data/input/polygons/huge_seattle.poly --complete-ways -o=data/input/osm/Seattle.osm
rm -fv updated_wa.osm.pbf
# Then delete the individual .osm's desired and run import.sh