From c09d91fe95fca4367f47c06fc808cd02a1a8e6a5 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Tue, 13 Aug 2019 14:40:54 -0400 Subject: add bins --- templates/.bin/metar | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 templates/.bin/metar (limited to 'templates/.bin/metar') diff --git a/templates/.bin/metar b/templates/.bin/metar new file mode 100755 index 0000000..a9d7429 --- /dev/null +++ b/templates/.bin/metar @@ -0,0 +1,29 @@ +#!/bin/bash + +say=0 +jq="/usr/bin/jq" +if [[ ! -x "$jq" && -x "/usr/local/bin/jq" ]]; then + jq="/usr/local/bin/jq" +fi + +while [ $# -gt 0 ]; do + case "$1" in + -s|--say) + say=1 + ;; + -*) + echo "Unknown option flag: $1" + exit 1 + ;; + *) + station=$(echo -n "$1" | tr "a-z" "A-Z") + ;; + esac + shift +done +json=$(curl -s "https://avwx.rest/api/metar/${station:-KBOS}?options=speech") +if [ $say -gt 0 ]; then + echo "$json" | "$jq" --raw-output '.Speech' 2>&1 | say +else + echo "$json" | "$jq" --raw-output '.["Raw-Report"]' 2>&1 +fi -- cgit v1.2.3