Replies: 3 comments 5 replies
-
You have the right order of operations. The Be aware that not all stations report SLP or report it at every interval. ASOS stations (usually large airports) are your best bet for consistent SLP observations. Otherwise you may have to convert from station barometric pressure or altimeter setting, depending on what's available. |
Beta Was this translation helpful? Give feedback.
-
I am sometimes getting barometric pressure readings from KDET that aren't making sense to me. Here is part of the JSON response @ about 11:30 AM 7/22/2025: By my math, for a sea level presssure of 102110 Pa, and a station altitude of 191 meters, the surface barometric measurement would have to be around 99800, not the 102130 reported. And it received a quality of "V". Thank you in advance. |
Beta Was this translation helpful? Give feedback.
-
I am going to guess that the only possible pressures are above 950mb and below 1050mb (or similar thresholds) so for values lower than 500 you prefix with 10 otherwise you prefix with 9. The METAR format goes back to the later 1960s when data rates were slow, so every character mattered for speed. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I need to get sea level pressure but I am starting with latitude and longitude location data. So far the only thing I have come up with is:
Using
api.weather.gov/points/{latitude},{longitude}/
and then parsing out the forcast office ID and grid points,
then using
api.weather.gov/gridpoints/{wfo}/{x},{y}/stations
to give me a station, and finally using
api.weather.gov/stations/{station}/observations/latest
to get sea level pressure.
I'm sure there is a better way.
I am grateful for any help.
Beta Was this translation helpful? Give feedback.
All reactions