mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
9 lines
263 B
Bash
Executable file
9 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
REGION="russia";
|
|
DISTRICT="siberian-fed-district-latest";
|
|
|
|
mkdir pbf
|
|
wget "https://download.geofabrik.de/$REGION/$DISTRICT.osm.pbf" -O "pbf/$DISTRICT.osm.pbf"
|
|
|
|
osrm-extract "./pbf/$DISTRICT.osm.pbf" -p ./rules.lua
|
|
osrm-contract "./pbf/$DISTRICT.osrm"
|