mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-01 02:33:54 +03:00
11 lines
332 B
Bash
Executable File
11 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This tool needs https://wiki.openstreetmap.org/wiki/Osmupdate#Download
|
|
# This is just for Seattle
|
|
|
|
set -e
|
|
|
|
# From http://download.geofabrik.de/north-america/us/washington.html
|
|
curl -L -O http://download.geofabrik.de/north-america/us/washington-latest.osm.pbf
|
|
osmupdate -v washington-latest.osm.pbf updated_wa.osm.pbf
|