Time shifting filter for the selected meteo parameter.
This filter can correct the time base of a single parameter within a station, either with a constant offset or by reading time varying offsets from a provided file. Compared to the TimeShift time filter, this filter operates on only one parameter so it can shift parameters compared to each other within a given station dataset.
It can also compute the offset between two meteo parameter (one being used as reference parameter) by computing at each timestamp the offset that leads to the highest Pearson's correlation coefficient and writing this timeseries of offsets to a file. This correlation coefficient is evaluated over a given time window and sampling rate (the data is first temporarily forced-resampled at this constant sampling rate before computing the correlation coefficient). A large data window is more accurate but will fail to properly capture sudden changes while a short data window might generate some spurious offsets. In any case, it is advised to plot and tweak the generated timeseries of offsets first before using it to correct the meteo parameter (keep in mind that the offsets are given as the correction that should be applied to temporally re-synchronize the meteo parameter of choice, so for example +600 means that the signal would need to be moved forward by 600 seconds in order to be synchronized with the reference parameter).
This filter takes the following arguments:
A typical workflow for this filter would be:
Example of configuration to compute the time offset between TA_2 and TA_1 used as reference and write the results in the TA2_extracted.dat file (located in the current working directory):
Applying the corrections provided in the TA2_corrections.dat file (located in the same directory as the ini file):
The TA2_corrections.dat file gives a an hour forward correction from 2018-12-03T00:00, then 2 hours backward from 2019-03-12T12:00 until 2019-10-01T15:30 when there is no correction any more:
#include <ProcShift.h>
Public Member Functions | |
ProcShift (const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg) | |
virtual void | process (const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec) |
Public Member Functions inherited from mio::ProcessingBlock | |
virtual | ~ProcessingBlock () |
virtual void | process (const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)=0 |
virtual void | process (Date &dateStart, Date &dateEnd) |
std::string | getName () const |
const ProcessingProperties & | getProperties () const |
const std::string | toString () const |
bool | skipStation (const std::string &station_id) const |
Should the provided station be skipped in the processing? More... | |
bool | noStationsRestrictions () const |
const std::vector< DateRange > | getTimeRestrictions () const |
bool | skipHeight (const double &height) const |
Should the provided height be skipped in the processing? More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from mio::ProcessingBlock | |
static void | readCorrections (const std::string &filter, const std::string &filename, std::vector< double > &X, std::vector< double > &Y) |
Read a data file structured as X Y value on each lines. More... | |
static void | readCorrections (const std::string &filter, const std::string &filename, std::vector< double > &X, std::vector< double > &Y1, std::vector< double > &Y2) |
Read a data file structured as X Y1 Y2 value on each lines. More... | |
static std::vector< double > | readCorrections (const std::string &filter, const std::string &filename, const size_t &col_idx, const char &c_type, const double &init) |
Read a correction file applicable to repeating time period. More... | |
static std::vector< offset_spec > | readCorrections (const std::string &filter, const std::string &filename, const double &TZ, const size_t &col_idx=2) |
Read a correction file, ie a file structured as timestamps followed by values on each lines. More... | |
static std::map< std::string, std::vector< DateRange > > | readDates (const std::string &filter, const std::string &filename, const double &TZ) |
Read a list of date ranges by stationIDs from a file. More... | |
Static Public Attributes inherited from mio::ProcessingBlock | |
static const double | default_height |
Protected Member Functions inherited from mio::ProcessingBlock | |
ProcessingBlock (const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg) | |
protected constructor only to be called by children More... | |
Static Protected Member Functions inherited from mio::ProcessingBlock | |
static void | extract_dbl_vector (const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< double > &ovec) |
static void | extract_dbl_vector (const unsigned int ¶m, const std::vector< const MeteoData * > &ivec, std::vector< double > &ovec) |
Protected Attributes inherited from mio::ProcessingBlock | |
const std::set< std::string > | excluded_stations |
const std::set< std::string > | kept_stations |
const std::vector< DateRange > | time_restrictions |
std::set< double > | included_heights |
std::set< double > | excluded_heights |
bool | all_heights |
ProcessingProperties | properties |
const std::string | block_name |
Static Protected Attributes inherited from mio::ProcessingBlock | |
static const double | soil_albedo = .23 |
static const double | snow_albedo = .85 |
static const double | snow_thresh = .1 |
parametrize the albedo from HS More... | |
mio::ProcShift::ProcShift | ( | const std::vector< std::pair< std::string, std::string > > & | vecArgs, |
const std::string & | name, | ||
const Config & | cfg | ||
) |
|
virtual |
Implements mio::ProcessingBlock.