28 #ifndef __TERRALIB_ST_INTERNAL_ABSTRACTTIMESERIESINTERP_H 
   29 #define __TERRALIB_ST_INTERNAL_ABSTRACTTIMESERIESINTERP_H 
   32 #include "../../Config.h" 
   38 namespace te { 
namespace dt { 
class DateTime; 
class AbstractData; } }
 
   39 namespace te { 
namespace common { 
class AbstractParameters; } }
 
Abstract parameters base interface.
 
An abstract class for an interpolation function or interpolator that estimate a value at non-observav...
 
AbstractTimeSeriesInterp()
Constructor.
 
virtual void setParams(te::common::AbstractParameters *p)=0
It sets the parameters associated to the interpolator.
 
virtual std::unique_ptr< te::dt::AbstractData > estimate(const TimeSeries &ts, te::dt::DateTime *time) const =0
It estimates a value at a given non-observed time of a time series.
 
virtual ~AbstractTimeSeriesInterp()
Virtual destructor.
 
virtual te::common::AbstractParameters * getParams()=0
It gets the parameters associated to the interpolator.
 
A class to represent time series.
 
#define TESTEXPORT
You can use this macro in order to export/import classes and functions from this module.