jim-easterbrook / pywws

Python software for USB Wireless WeatherStations
https://pywws.readthedocs.io/
GNU General Public License v2.0
204 stars 62 forks source link

sudo pywws-testweatherstation -d -h 1 doesn't show some data #72

Closed grossik closed 5 years ago

grossik commented 5 years ago

I use testweatherstation -d -h 1 for my weatherstation and send this data in json to my FTP server. My problem is that I do not see some data like dewpoint. And rain data are not displayed correctly. My weather station is WH1090 Sorry for my bad English.

jim-easterbrook commented 5 years ago

Dewpoint is not included in the raw data read from the station, you need to calculate it from temperature and humidity.

The raw rain data is the total amount since the outside sensors were reset. To get the amount of rain in the last hour you need to subtract the value from an hour earlier.

grossik commented 5 years ago

Dewpoint is not included in the raw data read from the station, you need to calculate it from temperature and humidity.

The raw rain data is the total amount since the outside sensors were reset. To get the amount of rain in the last hour you need to subtract the value from an hour earlier.

Thank you. So I have to remember value of rain from the previous hour and deduct from new value?

jim-easterbrook commented 5 years ago

Yes.