Replies: 5 comments 2 replies
-
As expected, the |
Beta Was this translation helpful? Give feedback.
-
I'm also getting null values when pulling from https://api.weather.gov/stations/KBOS/observations/. I've tried using a time range, or pulling just a single value and I get the same nulls. I'm mostly looking for precipitation data, which is primarily nulls. The html site where the 3 day history can be found is working properly: https://forecast.weather.gov/data/obhistory/KBOS.html. So, it appears that the data were collected but they are just not accessible by the api. |
Beta Was this translation helpful? Give feedback.
-
Came here to report the same issue for : https://api.weather.gov/stations/KEYF/observations/latest https://api.weather.gov/stations/KILM/observations/latest My request rate is once per hour. The API is very unstable/unreliable. |
Beta Was this translation helpful? Give feedback.
-
I'm using KBWI data, and although current conditions seem to be reliable, it is not reliably providing 5-day forecast information as part of the transaction. Is this expected behavior? |
Beta Was this translation helpful? Give feedback.
-
Just started using the api to create a humidity set point on my ecobee. I was surprised when I looked at the log and saw the outside temp (F) was 32 (It's way colder). Looks like it occurred multiple times last night and again this morning. I did add error checking on the observance of ".status" in the json response, but that wasn't the case so I saved the json response when this occurs. Using KROC/observations/latest and sample below
for me, I can just ignore the response, but it would be nice if errors were standardized so there is one place to check if the response is valid. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello and thank you for providing this API. I have an issue - I'm intermittently seeing
null
in temperature, pressure, and windspeed fields for my local station.My script polls https://api.weather.gov/stations/KBWI/observations/latest and logs the current time and values from the JSON response:
id
,properties.temperature.value
,properties.barometricPressure.value
,properties.windSpeed.value
. Here is a log that shows the issue: https://gist.github.com/cyounkins/63e985be2525eb3f8c8cafd527464170Take the first response with nulls:
At 2:38 GMT a request was made to
/stations/KBWI/observations/latest
, and the response had anid
ofhttps://api.weather.gov/stations/KBWI/observations/2021-10-26T02:16:00+00:00
and the null values.I have confirmed this issue can be seen outside my script in Firefox at both
/latest
and/<date>
endpoints. That is, accessing the/<date>
endpoint also showsnull
s. Here is acurl
of a different date showing the issue: https://gist.github.com/cyounkins/50eebdfbfefd98c8e70277ff5a00995aAt some point later (possibly with the addition of new data),
/latest
and/<date>
endpoints will be fixed. So now if you go to theid
URL given in the sample above, it will have data that didn't appear in the log.As a user, I would much rather have no update provided than have an update with these critical fields be
null
.Knowing nothing about your architecture, some very shot-in-the-dark ideas on what could be causing this:
Again, thanks for your work on this free service.
Beta Was this translation helpful? Give feedback.
All reactions