Jachym wrote: ↑Fri Dec 22, 2017 1:40 pm
OK, are all the parameters essential for MT available? Im looking at it and it seems like there are two units, do all users have both? Are they sold together?
What I need is the API to provide:
- date/time of measurement
- temperature
- humidity
- pressure
- daily precipitation
- rain rate
- wind speed
- wind gust (optional, if N/A we can use speed)
- wind bearing
- solar (optional)
You have too sell both units one is for baro/temp/hum and the other for wind/rain/uv/solarradiation as far I can see the units sent the data in local epoch time the output is
{
"status": {
"status_code": 0,
"status_message": "SUCCESS"
},
"station_units": {
"units_temp": "f",
"units_wind": "mph",
"units_precip": "in",
"units_pressure": "mb",
"units_distance": "mi",
"units_direction": "cardinal",
"units_other": "imperial"
},
"station_id": 67,
"station_name": "Home",
"public_name": "Public Location Name",
"latitude": 29.00724,
"longitude": -80.88067,
"timezone": "America/New_York",
"elevation": 21.845,
"obs": [
{
"timestamp": 1495732068,
"air_temperature": 29.1,
"barometric_pressure": 1002.9,
"sea_level_pressure": 1004.7,
"relative_humidity": 77,
"precip": 0,
"precip_accum_last_1hr": 0,
"precip_accum_last_24hr": 0,
"wind_avg": 3.5,
"wind_direction": 289,
"wind_gust": 5.1,
"wind_lull": 2.2,
"solar_radiation": 330,
"uv": 8,
"brightness": 7000,
"lightning_strike_last_epoch": 1495652340,
"lightning_strike_last_distance": 22,
"lightning_strike_count_last_3hr": 0,
"feels_like": 21.4,
"heat_index": 21.4,
"wind_chill": 21.4,
"dew_point": 17.2,
"wet_bulb_temperature": 18.6,
"delta_t": -2.8,
"air_density": 1.18257,
"air_temperature_indoor": 29.1,
"barometric_pressure_indoor": 1002.9,
"sea_level_pressure_indoor": 1004.7,
"relative_humidity_indoor": 77,
"precip_indoor": 0,
"precip_accum_last_1hr_indoor": 0,
"precip_accum_last_24hr_indoor": 0,
"wind_avg_indoor": 3.5,
"wind_direction_indoor": 289,
"wind_gust_indoor": 5.1,
"wind_lull_indoor": 2.2,
"solar_radiation_indoor": 330,
"uv_indoor": 8,
"brightness_indoor": 7000,
"lightning_strike_last_epoch_indoor": 1495652340,
"lightning_strike_last_distance_indoor": 22,
"lightning_strike_count_last_3hr_indoor": 0,
"feels_like_indoor": 21.4,
"heat_index_indoor": 21.4,
"wind_chill_indoor": 21.4,
"dew_point_indoor": 17.2,
"wet_bulb_temperature_indoor": 18.6,
"delta_t_indoor": -2.8,
"air_density_indoor": 1.18257
}
]
}
The units can be set to Imperial or metric I've the station not received I hope in Januari but I've no idea where the data are sent to yes to wunderground but thats not usefull so atm I'm stuck I just saw that Brian from Weatherdisplay has released a free version for the rasperry 3 with the api for Meteotemplate (unfortunattely I've an pi 2) it seems that the sofware need to intercept UDP packets locally I think that might be the solution to feed meteotemplate well I will see what to do when I receive the station I will come back to you then.
Maybe somebody over here is using meteotemplate with weatherflow
Thanx anyway