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)
override;
52 std::string
toString()
const override;
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
std::string toString() const override
Definition NearestNeighbour.cc:49
void resample(const std::string &stationHash, const size_t &index, const ResamplingPosition &position, const size_t ¶mindex, const std::vector< MeteoData > &vecM, MeteoData &md) override
Definition NearestNeighbour.cc:57
Interface class for the temporal resampling algorithms.
Definition ResamplingAlgorithms.h:43
ResamplingPosition
Definition ResamplingAlgorithms.h:57