19#ifndef PROCTRANSFORMWINDVECTOR_H
20#define PROCTRANSFORMWINDVECTOR_H
71 #define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
84 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
85 std::vector<MeteoData>& ovec);
88#if defined PROJ4 || defined PROJ
89 static std::string findUComponent(
const MeteoData& md);
90 static std::string findVComponent(
const MeteoData& md);
91 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const Config &cfg);
93 void TransformCoord(
const double& X_in,
const double& Y_in,
double& X_out,
double& Y_out);
96 projPJ pj_src, pj_dest;
98 PJ_CONTEXT* pj_context;
103 std::vector< std::pair<std::string, std::string> > vecArgs_i;
107 std::string s_coordparam, t_coordparam;
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition: MeteoData.h:107
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67