Source code for weatherDB.stations.StationsET
# libraries
import logging
from ..station import StationET
from .StationsBaseTET import StationsBaseTET
# set settings
# ############
__all__ = ["StationsET"]
log = logging.getLogger(__name__)
# class definition
##################
[docs]
class StationsET(StationsBaseTET):
"""A class to work with and download potential Evapotranspiration (VPGB) data for several stations."""
_StationClass = StationET
_timeout_raw_imp = 120