Moved scripts

This commit is contained in:
Brandon Rozek 2023-01-05 01:01:55 -05:00
parent 8a2c03a69b
commit 15c038f9ff
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
5 changed files with 0 additions and 0 deletions

27
scripts/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>"