2
0
Fork 0

osm-garmin: add version to map

main
Ducky 2023-10-04 03:35:07 +02:00
parent 78d3b66043
commit 9975d0ede8
1 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@ cwd="$(pwd)"
function build_gmap() { function build_gmap() {
region="$1" region="$1"
region_id="$2" # BUG: We're not actually using this anywhere! region_id="$2"
style="$3" style="$3"
country_abbr="$4" country_abbr="$4"
country_name="$5" country_name="$5"
@ -51,6 +51,8 @@ function build_gmap() {
exec_mkgmap \ exec_mkgmap \
--gmapsupp \ --gmapsupp \
--product-id=$region_id \
--product-version=$version_id \
--area-name="$area_name" \ --area-name="$area_name" \
--country-abbr="$country_abbr" \ --country-abbr="$country_abbr" \
--description="$(echo "${region##*/}" | sed -e "s/-/ /g" | sed -e "s/\b\(.\)/\u\1/g" | sed -e "s/ /-/g")" \ --description="$(echo "${region##*/}" | sed -e "s/-/ /g" | sed -e "s/\b\(.\)/\u\1/g" | sed -e "s/ /-/g")" \