00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef CACHEDINTERPOLATION_H_
00025 #define CACHEDINTERPOLATION_H_
00026
00027 #include <boost/shared_ptr.hpp>
00028 #include <boost/shared_array.hpp>
00029 #include "fimex/interpolation.h"
00030 #include "fimex/Data.h"
00031
00032 namespace MetNoFimex
00033 {
00034
00039 class CachedInterpolation
00040 {
00041 private:
00042 std::vector<double> pointsOnXAxis;
00043 std::vector<double> pointsOnYAxis;
00044 size_t inX;
00045 size_t inY;
00046 size_t outX;
00047 size_t outY;
00048 int (*func)(const float* infield, float* outvalues, const double x, const double y, const int ix, const int iy, const int iz);
00049 public:
00050 CachedInterpolation() : inX(0), inY(0), outX(0), outY(0), func(mifi_get_values_f) {}
00060 CachedInterpolation(int funcType, std::vector<double> pointsOnXAxis, std::vector<double> pointsOnYAxis, size_t inX, size_t inY, size_t outX, size_t outY);
00061 virtual ~CachedInterpolation() {}
00069 boost::shared_array<float> interpolateValues(boost::shared_array<float> inData, size_t size, size_t& newSize);
00070 };
00071
00072
00073
00074 }
00075
00076 #endif