2
0
Fork 0
containerfiles/osm-garmin/app/build-gmap.sh

186 lines
5.2 KiB
Bash
Raw Normal View History

2023-09-26 03:13:31 +02:00
#!/usr/bin/env bash
. /app/utils.sh
2023-09-26 05:01:15 +02:00
regions="$1"
2023-09-26 03:13:31 +02:00
style="$2"
cwd="$(pwd)"
function build_gmap() {
region="$1"
2023-10-01 03:10:17 +02:00
region_id="$2"
style="$3"
country_abbr="$4"
country_name="$5"
2023-09-26 03:13:31 +02:00
region_shortname="$(get_region_shortname "$region")"
2023-10-01 01:55:17 +02:00
generated_map_dir="$out_dir/$region_shortname/"
2023-10-01 03:44:53 +02:00
version_path="$generated_map_dir/version.txt"
2023-09-26 03:13:31 +02:00
bounds_dir_md5="$(get_md5_dir "$bounds_dir")"
map_md5="$(get_md5 "$maps_dir/$region_shortname.osm.pbf")"
2023-10-01 03:10:17 +02:00
style_md5="$(get_md5 "$styles_dir/$style.TYP")"
2023-09-26 03:13:31 +02:00
2023-10-01 03:44:53 +02:00
version_id=""
version_md5="$(echo "$bounds_dir_md5|$map_md5|$style_md5" | md5sum | cut -d' ' -f1)"
if [[ -f "$version_path" ]]; then
version_id="$(cat "$version_path" | cut -d'|' -f1)"
version_id="$((version_id+1))"
fi
version="$version_id|$version_md5"
2023-09-26 03:13:31 +02:00
build="true"
build_failed="false"
mkdir -p "$generated_map_dir"
[[ -z "$country_abbr" ]] && country_abbr="ZZ"
[[ -z "$country_name" ]] && country_name="Unknown"
2023-09-26 03:13:31 +02:00
if [[ -f "$version_path" ]]; then
if [[ $(cat "$version_path") == "$version" ]]; then
build="false"
fi
fi
if [[ $build == "true" ]]; then
cd "$build_dir"
exec_mkgmap \
2023-10-01 05:04:21 +02:00
--description="$(echo "${region##*/}" | sed -e "s/-/ /g" | sed -e "s/\b\(.\)/\u\1/g" | sed -e "s/ /-/g")" \
2023-09-26 03:13:31 +02:00
--add-pois-to-areas \
--bounds="$bounds_dir" \
--country-abbr="$country_abbr" \
--country-name="$country_name" \
--housenumbers \
2023-10-01 04:23:19 +02:00
--index \
--route \
2023-10-01 05:04:21 +02:00
--gmapsupp \
2023-10-01 01:47:04 +02:00
$tiles_dir/$region_shortname/6324*.osm.pbf \
"$styles_dir/$style.TYP"
2023-09-26 03:13:31 +02:00
[[ $? != 0 ]] && build_failed="true"
cd "$cwd"
if [[ $build_failed == "false" ]]; then
rm -f $generated_map_dir/*
mv "$build_dir/gmapsupp.img" "$generated_map_dir/${region_shortname}_gmapsupp.img"
mv "$build_dir/osmmap.img" "$generated_map_dir/${region_shortname}_osmmap.img"
mv "$build_dir/osmmap.tdb" "$generated_map_dir/${region_shortname}_osmmap.tdb"
2023-09-26 03:13:31 +02:00
echo "$version" > "$version_path"
rm -f $build_dir/*
rm -f "$styles_dir/x$style.TYP"
2023-09-26 03:13:31 +02:00
else
rm -f $build_dir/*
fi
fi
}
function cleanup() {
rm -f "$build_dir/*"
}
function update_bounds() {
2023-10-02 17:40:25 +02:00
function update_bound_item() {
2023-09-26 03:13:31 +02:00
type="$1"
bounds_url_prefix="https://www.thkukuk.de/osm/data"
curl -L --fail "$bounds_url_prefix/$type-latest.zip" -o "$bounds_dir/$type.zip"
unzip -o "$bounds_dir/$type.zip" -d "$bounds_dir"
rm -f "$bounds_dir/$type.zip"
}
2023-10-02 17:40:25 +02:00
update_bound_item "bounds"
update_bound_item "sea"
2023-09-26 03:13:31 +02:00
}
function update_osm_map() {
region="$1"
region_filename="$(get_region_shortname "$region").osm.pbf"
region_path="$maps_dir/$region_filename"
curl -L "$(get_pbf_url "$region")" -o "$region_path"
}
function update_tiles() {
region="$1"
region_tiles_dir="$tiles_dir/$(get_region_shortname "$region")"
mkdir -p "$region_tiles_dir"
rm -rf "$region_tiles_dir/*"
cd "$region_tiles_dir" # HACK: --output-dir doesn't work
exec_splitter "$maps_dir/$(get_region_shortname "$region").osm.pbf"
cd "$cwd"
}
mkdir -p "$bounds_dir"
mkdir -p "$build_dir"
mkdir -p "$maps_dir"
mkdir -p "$out_dir"
mkdir -p "$tiles_dir"
[[ -z "$regions" ]] && die "No regions given (1st argument)"
[[ -z "$style" ]] && die "No style given (2nd argument)"
2023-09-26 05:01:15 +02:00
regions_array="$(echo $regions | tr ";" "\n")"
2023-10-01 01:47:04 +02:00
is_updates="false"
[[ $OSMGARMIN_FORCE_BUILD == "true" ]] && is_updates="true"
2023-09-26 03:13:31 +02:00
2023-10-01 05:04:21 +02:00
if [[ $OSMGARMIN_SKIP_UPDATE_MAPS != "true" ]]; then
for region in $regions_array; do
region="$(echo "$region" | cut -d':' -f1)"
2023-10-01 05:04:21 +02:00
if [[ "$(check_osm_region_exists "$region")" == "true" ]]; then
if [[ "$(check_osm_update "$region")" == "true" ]]; then
echo "🌍 Updating OSM map: $region"
update_osm_map "$region"
2023-09-26 03:13:31 +02:00
2023-10-01 05:04:21 +02:00
echo "✂️ Building tiles: $region"
update_tiles "$region"
2023-10-01 01:47:04 +02:00
2023-10-01 05:04:21 +02:00
[[ $is_updates == "false" ]] && is_updates="true"
else
2023-10-02 17:40:25 +02:00
echo "⚠️ No updates for \"$region\""
2023-10-01 05:04:21 +02:00
fi
2023-10-01 01:47:04 +02:00
else
2023-10-01 05:04:21 +02:00
echo "⚠️ Region \"$region\" does not exist"
2023-09-26 05:01:15 +02:00
fi
2023-10-01 05:04:21 +02:00
done
else
is_updates="true"
fi
2023-09-26 03:13:31 +02:00
2023-10-01 01:47:04 +02:00
if [[ $is_updates == "true" ]]; then
2023-10-01 05:04:21 +02:00
if [[ $OSMGARMIN_SKIP_UPDATE_BOUNDS != "true" ]]; then
echo "📒 Updating bounds..."
update_bounds
fi
2023-09-26 05:01:15 +02:00
2023-10-01 03:10:17 +02:00
region_id=1
2023-10-01 01:47:04 +02:00
for region in $regions_array; do
region="$(echo "$region" | cut -d':' -f1)"
region_attr="$(echo "$region" | cut -d':' -f2)"
region_country_abbr="$(echo "$region_attr" | cut -d',' -f1)"
region_country_name="$(echo "$region_attr" | cut -d',' -f2)"
2023-10-01 01:47:04 +02:00
if [[ "$(check_osm_region_exists "$region")" == "true" ]]; then
echo "🔨 Building Garmin map: $region"
build_gmap "$region" "$region_id" "$style" "$region_country_abbr" "$region_country_name"
2023-10-01 03:10:17 +02:00
((region_id++))
2023-10-01 01:47:04 +02:00
fi
done
else
2023-10-01 02:45:43 +02:00
echo "⚠️ No new maps. Not building (set \$OSMGARMIN_FORCE_BUILD=true to override)"
2023-10-01 01:47:04 +02:00
fi
2023-09-26 03:13:31 +02:00
echo "🧹 Cleaning up..."
cleanup