summaryrefslogtreecommitdiff
path: root/metar.sh
diff options
context:
space:
mode:
Diffstat (limited to 'metar.sh')
-rwxr-xr-xmetar.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/metar.sh b/metar.sh
index 599d57f..14b71e0 100755
--- a/metar.sh
+++ b/metar.sh
@@ -10,7 +10,7 @@ fi
ICAO="$(echo "$ICAO" | tr "a-z" "A-Z")"
# aviationweather.gov
-result1="$(xmllint --xpath 'string(/response/data/METAR/raw_text)' <(curl -s "https://www.aviationweather.gov/adds/dataserver_current/httpparam?dataSource=metars&requestType=retrieve&format=xml&stationString=$ICAO&hoursBeforeNow=1") | head -n1)"
+result1="$(curl -s https://aviationweather.gov/cgi-bin/data/metar.php?ids=$ICAO)"
# metar-taf.com
result2="$(curl -s "https://metar-taf.com/history/$ICAO" | grep -E "METAR $ICAO [0-9]{6}Z" | head -n1 | sed "s/^\s*METAR // ; s|</td>|| ; s/\s*$//")"