19#ifndef NEAREST_NEIGHBOUR_H
20#define NEAREST_NEIGHBOUR_H
48 NearestNeighbour(
const std::string& i_algoname,
const std::string& i_parname,
const double& dflt_max_gap_size,
const std::vector< std::pair<std::string, std::string> >& vecArgs);
50 void resample(
const std::string& stationHash,
const size_t& index,
const ResamplingPosition& position,
const size_t& paramindex,
51 const std::vector<MeteoData>& vecM,
MeteoData& md);
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition: MeteoData.h:108
Nearest Neighbour data resampling.
Definition: NearestNeighbour.h:46
NearestNeighbour(const std::string &i_algoname, const std::string &i_parname, const double &dflt_max_gap_size, const std::vector< std::pair< std::string, std::string > > &vecArgs)
Definition: NearestNeighbour.cc:28
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: NearestNeighbour.cc:56
std::string toString() const
Definition: NearestNeighbour.cc:48
Interface class for the temporal resampling algorithms.
Definition: ResamplingAlgorithms.h:43
ResamplingPosition
Definition: ResamplingAlgorithms.h:46