Welcome to WeatherDB’s documentation!
The weatherDB module offers an API to interact with the automatically filled weatherDB Database.
There are 4 different main sub modules with their corresponding classes you might need to use.
weatherDB.config:This submodule has only one main object
config. This object is used to configure the module, like e.g. saving the database connection.
weatherDB.station:Has a class for every type of station. E.g.
StationPfor precipitation. One object represents one Station with one parameter. This object can get used to get the corresponding timeserie. There is also aGroupStationclass that groups the three parameters precipitation, temperature and potential evapotranspiration together for one station. If one parameter is not available for a specific station this one won’t get grouped.
weatherDB.stations:Is a grouping class for all the stations of one measurement parameter. E.g.
StationsP. Can get used to do actions on all the stations.
weatherDB.broker:This submodule has only one class
Broker. This one is used to do actions on all the stations together. Mainly only used for updating the Database.
To get started follow th installation guide and the setup guide first. After that you can use the quickstart guide to get a first impression of the module.