This is my first attempt to access some data for my new Tempest.
Had a look at
https://weatherflow.github.io/SmartWeather/api/
https://github.com/WeatherFlow (perhaps there will be something here eventually)
**Perhaps there is a better way to do this, please let me know **
I only appear to be able to get “type”: “obs_sky”, but I am looking for wpi;d be under type=“obs_st” or type=“obs_air”
https://weatherflow.github.io/SmartWeather/api/swagger/#!/observations/getObservationsByDeviceId
lists the results but I don’t appear to be able to change the results type
test API key limit?
I also tried the oauth option but I just get 404 not found.
{
"status": {
"status_code": 0,
"status_message": "SUCCESS"
},
"device_id": 25854,
"type": "obs_sky",
"source": "cache",
"summary": {
"precip_total_1h": 0.0,
"precip_accum_local_yesterday": 0.012043,
"precip_analysis_type_yesterday": 0
},
"obs": [
[
1597681675,
31197,
2.59,
0,
0,
0.54,
1.65,
234,
3.5,
1,
259,
0,
0,
3,
null,
null,
0
]
]
}
Project
I would like to pull the last 30 days of data and calculate an absolute humidity to add to a chart.
Personally I am finding the charts vis WF a bit lacking as RH without temperature feels incomplete.
Also gives me a change to play with the API and understand what’s possible