Use the 'api' end point from the pws api, which pulls data directly from the stations api.
To get the
http://{pws api url}/weather/EWXDAVIS01/api?start=2024-11-26T14%3A00%2B00%3A00&end=2024-11-26T15%2B00%3A00'
note that Zentra stations current report readings in reverse chronological order and don't report more than 30 minutes. To be consistent across station types
convert the readings into a data frame, create actual dates from the iso strings returned and sort on datetime to get the latest reading
because the 'latest' time is differnt across stations, report the time the reading was taken on the web page with the reading
show most recent weather readings from a station.
Use the 'api' end point from the pws api, which pulls data directly from the stations api.
To get the
http://{pws api url}/weather/EWXDAVIS01/api?start=2024-11-26T14%3A00%2B00%3A00&end=2024-11-26T15%2B00%3A00'
note that Zentra stations current report readings in reverse chronological order and don't report more than 30 minutes. To be consistent across station types