Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change to use o5m splitter output #316

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions garmin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,11 @@ SEA="$(pwd)/sea"
mkdir data
pushd data > /dev/null

rm -f morocco-latest.osm.pbf
wget "https://download.geofabrik.de/africa/morocco-latest.osm.pbf"
wget -N "https://download.geofabrik.de/africa/morocco-latest.osm.pbf"

rm -f 6324*.pbf
java -jar $SPLITTERJAR --precomp-sea=$SEA "$(pwd)/morocco-latest.osm.pbf"
DATA="$(pwd)/6324*.pbf"
rm -f 6324*.o5m
java -jar $SPLITTERJAR --precomp-sea=$SEA --output=o5m "$(pwd)/morocco-latest.osm.pbf"
DATA="$(pwd)/6324*.o5m"

popd > /dev/null

Expand Down