Where can I find out what these "obs" values mean?

I’m using this endpoint:
https://swd.weatherflow.com/swd/rest/observations/station/

What units is this returning? It’s not specified anywhere in the API documention:
https://weatherflow.github.io/Tempest/api/swagger/#!/stations/getStations

Also, here are some of the “obs” in the response:

‘precip_accum_local_day’: 14.135041,
‘precip_accum_local_day_final’: 7.41429,

‘precip_accum_local_yesterday’: 16.595623,
‘precip_accum_local_yesterday_final’: 9.967571,

‘precip_minutes_local_day’: 187,

‘precip_minutes_local_yesterday’: 303,
‘precip_minutes_local_yesterday_final’: 303,

‘precip_analysis_type_yesterday’: 1,


Where can I find what these values mean?

What is precip_accum_local_day vs precip_accum_local_day_final?

What is ‘precip_analysis_type_yesterday’: 1?

What is ‘precip_minutes_local_day’: 187?

Where is the documentation for this?

https://weatherflow.github.io/Tempest/api/udp/v143/

So, that’s for the units? Unfortunately, the examples in that documentation doesn’t seem to be the same for the /station/ endpoint… I can’t believe how bad the documentation is for these Tempest Weather Systems.

Do you know if there’s a reference which describes what these observations / values mean?

precip_accum_local_day VS precip_accum_local_day_final? No idea what the difference is…

‘precip_analysis_type_yesterday’? No idea what this means…

‘precip_minutes_local_day’? Or this…

It is important to note that WeatherFlow use the same API endpoints to power their in-house apps as we as users use to power our third-party apps. As a result, there are plenty of undocumented ‘features’ in the API that exist to provide the data required by WF, but are undocumented as they can change at any time and should only be used with that strong caveat in mind. If something is undocumented, then there is no guarantee that it will always be available.

That being said, here is my take on what the different values mean:

precip_accum_local_day: rain accumulation over the current day (midnight to midnight station time) with no NearCast corrections.

precip_accum_local_day_final: Same as above with NearCast corrections

precip_accum_local_yesterday: rain accumulation for yesterday (midnight to midnight station time) with no NearCast corrections.

precip_accum_local_yesterday_final: Same as above with NearCast corrections

precip_minutes_local_day: the number of minutes it was raining during the current day (midnight to midnight station time)

precip_minutes_local_yesterday: the number of minutes it was raining yesterday (midnight to midnight station time)

precip_minutes_local_yesterday_final: the number of minutes it was raining yesterday (midnight to midnight station time) after NearCast corrections

precip_analysis_type_yesterday: Indicates whether NearCast has been run on the data. I don’t know what the different flags mean. It is undocumented.

2 Likes