MeteoScreening Air Temperature
MeteoScreening uses a general settings file `pipes_meteo.yaml` that contains info how
specific `measurements` should be screened. Such `measurements` group similar variables
together, e.g. different air temperatures are measurement `TA`.
Additions to module `pkgs.qaqc.meteoscreening`:
- Added class `ScreenVar`
- Performs quality screening of air temperature `TA`.
- As first check, I implemented outlier detection via the newly added package `ThymeBoost`,
along with checks for absolute limits.
- Screening applies the checks defined in the file `pipes_meteo.yaml` for the respective
`measurement`, e.g. `TA` for air temperature.
- The screening outputs a separate dataframe that contains `QCF` flags for each check.
- The checks do not change the original time series. Instead, only the flags are generated.
- Screening routines for more variables will be added over the next updates.
- Added class `MeteoScreeningFromDatabaseSingleVar`
- Performs quality screening *and* resampling to 30MIN of variables downloaded from the database.
- It uses the `detailed` data when downloading data from the database using `dbc-influxdb`.
- The `detailed` data contains the measurement of the variable, along with multiple tags that
describe the data. The tags are needed for storage in the database.
- After quality screening of the original high-resolution data, flagged values are removed and
then data are resampled.
- It also handles the issue that data downloaded for a specific variable can have different time
resolution over the years, although I still need to test this.
- After screening and resampling, data are in a format that can be directly uploaded to the
database using `dbc-influxdb`.
- Added class `MeteoScreeningFromDatabaseMultipleVars`
- Wrapper where multiple variables can be screened in one run.
- This should also work in combination of different `measurements`. For example, screening
radiation and temperature data in one run.
Outlier Detection
Additions to `pkgs.outlierdetection`:
- Added module `thymeboost`
- Added module `absolute_limits`
[//]: (- optimum range)
[//]: (- `diive.core.times` `DetectFrequency` )
[//]: (- `diive.core.times`: `resampling` module )
[//]: (- New package in env: `ThymeBoost` [GitHub]&40;https://github.com/tblume1992/ThymeBoost/tree/main/ThymeBoost) )