Replies: 2 comments 5 replies
-
|
What I've done in the past for missing values is to retrieve the values from the METAR record from aviationweather.gov. Of course, this works if the location is close to an airport ;-). What I do now is routinely use the values in the METAR record as I find it consistently offers more info with a faster API turnaround time |
Beta Was this translation helpful? Give feedback.
-
|
Almost guaranteed that the dew point will be reported on the Metar (and it's listed twice). Unfortunately, all the interesting stuff comes after the RMK identifier which the API does not decode. the Federal Meteorological Handbook No. 1 documents most of the RMK fields. There's the python-metar decoder repo on GitHub and I wrote a decoder in bash. Let me know if you have any questions. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When pulling current observations for a station, I run into values (wind speed being the most common) with a qualityControl value of "Z". For instance the wind value was there the previous fetch, but now it's missing. I'm wondering how best to handle this when I'm displaying conditions for a given location. My current thinking is that if a value is missing due to "Z" status just display the previous value, and then update it when the new value is present.
Beta Was this translation helpful? Give feedback.
All reactions