Added scripts to grab EXIF GPS data and create WPT GPX

This commit is contained in:
Brandon Rozek 2022-06-16 20:45:20 -04:00
parent 220f2b7571
commit 980ac04f51
3 changed files with 97 additions and 0 deletions

27
LLA2WPT.sh Executable file
View file

@ -0,0 +1,27 @@
#!/bin/sh
set -o errexit
set -o nounset
set -o pipefail
show_usage() {
echo "Usage: LLA2WPT.sh [LAT] [LON] [ALT] [?NAME]"
exit 1
}
# Check argument count
if [ "$#" -ne 3 ] | [ "$#" -ne 4 ]; then
show_usage
fi
LAT="$1"
LON="$2"
ALT="$3"
NAME=${4-""}
echo "<wpt lat=\"$LAT\" lon=\"$LON\">"
echo -e "\t<ele>$ALT</ele>"
echo -e "\t<name>$4</name>"
echo "</wpt>"