19#ifndef LINEARRESAMPLING_H
20#define LINEARRESAMPLING_H
46 LinearResampling(
const std::string& i_algoname,
const std::string& i_parname,
const double& dflt_window_size,
const std::vector< std::pair<std::string, std::string> >& vecArgs);
48 void resample(
const std::string& stationHash,
const size_t& index,
const ResamplingPosition& position,
const size_t& paramindex,
49 const std::vector<MeteoData>& vecM,
MeteoData& md);
Linear data resampling.
Definition: LinearResampling.h:44
std::string toString() const
Definition: LinearResampling.cc:47
void resample(const std::string &stationHash, const size_t &index, const ResamplingPosition &position, const size_t ¶mindex, const std::vector< MeteoData > &vecM, MeteoData &md)
Definition: LinearResampling.cc:55
LinearResampling(const std::string &i_algoname, const std::string &i_parname, const double &dflt_window_size, const std::vector< std::pair< std::string, std::string > > &vecArgs)
Definition: LinearResampling.cc:27
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition: MeteoData.h:107
Interface class for the temporal resampling algorithms.
Definition: ResamplingAlgorithms.h:43
ResamplingPosition
Definition: ResamplingAlgorithms.h:46