QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
qgsidwinterpolator.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsidwinterpolator.h
3  --------------------
4  begin : March 10, 2008
5  copyright : (C) 2008 by Marco Hugentobler
6  email : marco dot hugentobler at karto dot baug dot ethz dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSIDWINTERPOLATOR_H
19 #define QGSIDWINTERPOLATOR_H
20 
21 #include "qgsinterpolator.h"
22 
26 class ANALYSIS_EXPORT QgsIDWInterpolator: public QgsInterpolator
27 {
28  public:
29  QgsIDWInterpolator( const QList<LayerData>& layerData );
31 
37  int interpolatePoint( double x, double y, double& result ) override;
38 
39  void setDistanceCoefficient( double p ) {mDistanceCoefficient = p;}
40 
41  private:
42 
43  QgsIDWInterpolator(); //forbidden
44 
48  double mDistanceCoefficient;
49 };
50 
51 #endif
Interface class for interpolations.
void setDistanceCoefficient(double p)
virtual int interpolatePoint(double x, double y, double &result)=0
Calculates interpolation value for map coordinates x, y.