Replace `metar` with custom parser of NOAA XML API
[khatus.git] / x2 / src / bash / exe / khatus_sensor_weather.sh
... / ...
CommitLineData
1#! /bin/sh
2
3set -e
4
5dir_bin="$1"
6weather_station_id="$2"
7
8curl \
9 -X GET \
10 -H "accept: application/vnd.noaa.obs+xml" \
11 "https://api.weather.gov/stations/${weather_station_id}/observations/latest?require_qc=false" \
12| hxpipe \
13| "$dir_bin"/khatus_parse_noaa_api
This page took 0.019494 seconds and 4 git commands to generate.