Skip to content
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
14 changes: 7 additions & 7 deletions garmin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Download [mkgmap](http://www.mkgmap.org.uk/download/mkgmap.html),
[splitter](http://www.mkgmap.org.uk/download/splitter.html) & bounds

```bash
MKGMAP="mkgmap-r4136" # adjust to latest version (see www.mkgmap.org.uk)
SPLITTER="splitter-r591"
MKGMAP="mkgmap-r4248" # adjust to latest version (see www.mkgmap.org.uk)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
MKGMAP="mkgmap-r4248" # adjust to latest version (see www.mkgmap.org.uk)
MKGMAP="mkgmap-r4299" # adjust to latest version (see www.mkgmap.org.uk)

SPLITTER="splitter-r592"

mkdir tools
pushd tools > /dev/null
Expand All @@ -39,8 +39,8 @@ if stat --printf='' bounds/bounds_*.bnd 2> /dev/null; then
else
echo "downloading bounds"
rm -f bounds.zip # just in case
wget "http://osm2.pleiades.uni-wuppertal.de/bounds/latest/bounds.zip"
unzip "bounds.zip" -d bounds
wget "http://osm.thkukuk.de/data/bounds-latest.zip"
unzip "bounds-latest.zip" -d bounds
fi

BOUNDS="$(pwd)/bounds"
Expand All @@ -50,8 +50,8 @@ if stat --printf='' sea/sea_*.pbf 2> /dev/null; then
else
echo "downloading sea"
rm -f sea.zip # just in case
wget "http://osm2.pleiades.uni-wuppertal.de/sea/latest/sea.zip"
unzip "sea.zip" -d sea
wget "http://osm.thkukuk.de/data/sea-latest.zip"
unzip "sea-latest.zip"
fi

SEA="$(pwd)/sea"
Expand All @@ -72,7 +72,7 @@ DATA="$(pwd)/6324*.pbf"

popd > /dev/null

OPTIONS="$(pwd)/opentopomap_options"
OPTIONS="$(pwd)/mkgmap_options"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no such file mkgmap_options.

STYLEFILE="$(pwd)/style/opentopomap"

pushd style/typ > /dev/null
Expand Down