mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-29 04:35:51 +03:00
12 lines
469 B
Bash
Executable File
12 lines
469 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# From http://download.geofabrik.de/north-america/us/washington.html
|
|
wget http://download.geofabrik.de/north-america/us/washington-latest.osm.pbf
|
|
osmupdate -v washington-latest.osm.pbf updated_wa.osm.pbf
|
|
rm -fv washington-latest.osm.pbf data/input/*.osm
|
|
osmosis --read-pbf updated_wa.osm.pbf --bounding-polygon file=data/polygons/huge_seattle.poly completeWays=true --write-xml data/input/Seattle.osm
|
|
rm -fv updated_wa.osm.pbf
|
|
# Then run import.sh
|