PyWeather
PyWeather copied to clipboard
Bindings for Davis Vantage Pro and Pro2 weather stations, upload of weather data (e.g. wunderground.com, pwsweather.com), and meteorological calculation/conversion functions.
PyWeather
Abstract
PyWeather contains weather related modules implemented in Python. Anything weather related is fair game for PyWeather. Currently PyWeather is limited to unit conversion, console reading, and data publication. But, future work can be added to PyWeather in any area.
Unit Conversion
PyWeather has a lot of support for common unit conversions in distance, temperature, pressure, and volume. Conversion from Fahrenheit to Celsius, and kelvin is supported, as well as conversions between inches of mercury and millibars.
Station Observations
PyWeather also contains modules that are capable of downloading observations from weather consoles. The current list of supported weather consoles includes:
- Davis Vantage Pro
- Davis Vantage Pro2
- Netatmo weather station.
Data Publication
PyWeather contains a module that allows developers to post conditions to weather aggregation sites. The current list of support services includes:
- WeatherUnderground (wundgerground.com)
- PWS Weather (pwsweather.com)
- WeatherForYou (weatherforyou.com)
For additional information, please email the maintainer: [email protected]
Data Publication Script
scripts/weatherpub.py supports publication of the weather data. It can also serve as a good usage example.
General usage
- Copy
weatherpub.conf.exampleasweatehrpub.conf. - Modify
weatehrpub.conf: - In
[general]section setstationto the name of the station you have. - Set
publicationto a comma-separated list of weather services you'd like to push data to. - Configure weather station and publication service in corresponding sections of the configuration file (see below for more details).
- Run it:
./scripts/weatherpub.py -c scripts/weatherpub.conf
Weather stations
The script supports Vantage Pro and Netatmo. Vantage Pro support was not recently tested and may be broken by the latest update. Please report bugs and/or send pull requests.
Vantage Pro
By default script excepts Vantage Pro weather stations to be connected to //dev/ttyS0. Use --tty command-line flag to override it (this cannot be currently set via command-line), e.g. ./scripts/weatherpub.py -c scripts/weatherpub.conf --tty /dev/ttyS1
Netatmo
Since netatmo works via public API, some setup required first:
- Create a Netatmo app.
- Use generated app id and secret as
client_idandclient_secret. - Use your own Netatmo username (e-mail) as
usernameandpassword. - Set
module_nameto your outdoor module name, e.g. 'Outdoor'.
Note: Rain Gauge and Anemometer are not supported yet.
Publication services
Only 3 publication service are currently supported. Out of them only PWS Weather was properly tested.
PWS Weather
- Create PWS Weather profile.
- Go to your dashboard and create a station.
- In
[pwsweather]section of the configuration file use your station id assite_id, and password from account you created at step 1 aspassword.