Mteorological indices data generator.
This generator offers several common meteorological indices that aggregate several parameters into one convenient index. It is possible to choose which index to compute with the TYPE argument:
- WINDCHILL: human-percived feeling of air temperature on exposed skin due to wind;
- HEATINDEX: human-perceived air temperature due to humidity;
- WET_BULB: lowest temperature that could be reached by water evaporation;
- HUMIDEX: Canadian index combining the effect of heat and humidity;
- WBGT_INDEX: a parametrization to reproduce the Wet Bulb Globe Temperature index (this parametrization is not that great);
- WBGT_SIMPLE: the simplified Wet Bulb Globe Temperature index parametzrization in use by the Australian Bureau of Meteorology.
*::edit1 = CREATE
*::arg1::algorithm = METEOINDEX
*::arg1::type = WINDCHILL
*::arg1::param = CHILL
|
| MeteoIndex (const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &i_algo, const std::string &i_section, const double &TZ) |
|
bool | generate (const size_t ¶m, MeteoData &md, const std::vector< MeteoData > &vecMeteo) override |
|
bool | create (const size_t ¶m, const size_t &ii_min, const size_t &ii_max, std::vector< MeteoData > &vecMeteo) override |
| Fill one time series of MeteoData for one station.
|
|
virtual | ~GeneratorAlgorithm () |
|
bool | skipStation (const std::string &station_id) const |
| Should this station be skipped, based on user-provided station ID restrictions?
|
|
bool | skipTimeStep (const Date &dt) const |
| Should this timestep be skipped, based on user-provided time restrictions?
|
|
bool | skipHeight (const double &height) const |
|
std::vector< DateRange > | getTimeRestrictions () const |
|
std::string | getAlgo () const |
|