It appears that the Tidbyt Tempest weather station app is showing the station pressure value rather than the more common sea level pressure.
Currently my tidbyt is showing 24.791 which is the station pressure converted, while the tempest website shows 29.385 which would be the sea_level_pressure of 991.5 converted to inches of mercury.
Is there github repo we can create pull requests to update this?
Here is the data from the Weatherflow API
"obs": [
{
"timestamp": 1640877333,
"air_temperature": -10.7,
"barometric_pressure": 839.5,
"station_pressure": 839.5,
"sea_level_pressure": 995.1,
"relative_humidity": 75,
"precip": 0,
"precip_accum_last_1hr": 0,
"precip_accum_local_day": 0,
"precip_accum_local_yesterday": 0,
"precip_minutes_local_day": 0,
"precip_minutes_local_yesterday": 0,
"wind_avg": 0.2,
"wind_direction": 22,
"wind_gust": 0.4,
"wind_lull": 0.1,
"solar_radiation": 2,
"uv": 0,
"brightness": 248,
"lightning_strike_last_epoch": 1633556648,
"lightning_strike_last_distance": 32,
"lightning_strike_count": 0,
"lightning_strike_count_last_1hr": 0,
"lightning_strike_count_last_3hr": 0,
"feels_like": -10.7,
"heat_index": -10.7,
"wind_chill": -10.7,
"dew_point": -14.3,
"wet_bulb_temperature": -11.5,
"delta_t": 0.8,
"air_density": 1.11431,
"pressure_trend": "steady"
}
Screenshot from the Tempest Station Website
Also the Tidbyt shows the temperature as 24.0 with the 0 while the actual temperature is 24.4 (-4.2 C → 24.4 F). I think you should either show the decimal point not zero’d or remove it entirely.