QGIS API Documentation 4.3.0-Master (6402a64e93b)
Loading...
Searching...
No Matches
qgsinterpolator.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsinterpolator.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 QGSINTERPOLATOR_H
19#define QGSINTERPOLATOR_H
20
21#include "qgis.h"
22#include "qgis_analysis.h"
23#include "qgis_sip.h"
25
26#include <QList>
27#include <QVector>
28
30class QgsGeometry;
31class QgsFeedback;
32
33#ifdef SIP_RUN
34//%ModuleHeaderCode
35#include "qgsinterpolator.h"
36//%End
37#endif
38
42struct ANALYSIS_EXPORT QgsInterpolatorVertexData
43{
48 QgsInterpolatorVertexData( double x, double y, double z )
49 : x( x )
50 , y( y )
51 , z( z )
52 {}
53
55
57 double x = 0.0;
59 double y = 0.0;
61 double z = 0.0;
62};
63
72class ANALYSIS_EXPORT QgsInterpolator
73{
74 public:
76 enum class Result : int
77 {
78 Success = 0,
79 Canceled,
80 InvalidSource,
81 FeatureGeometryError,
82 };
83
103
104 QgsInterpolator( const QList<QgsInterpolator::LayerData> &layerData );
105
106 virtual ~QgsInterpolator() = default;
107
116 virtual int interpolatePoint( double x, double y, double &result SIP_OUT, QgsFeedback *feedback = nullptr ) = 0;
117
119 QList<LayerData> layerData() const SIP_SKIP { return mLayerData; }
120
121 protected:
131 Result cacheBaseData( QgsFeedback *feedback = nullptr );
132
134 QVector<QgsInterpolatorVertexData> mCachedBaseData;
135
137 bool mDataIsCached = false;
138
140 QList<LayerData> mLayerData;
141
142 private:
143 QgsInterpolator() = delete;
144
152 bool addVerticesToCache( const QgsGeometry &geom, Qgis::InterpolationValueSource source, double attributeValue );
153};
154
155#endif
InterpolationSourceType
Interpolation source types.
Definition qgis.h:6639
@ Points
Point source.
Definition qgis.h:6640
InterpolationValueSource
Source for interpolated values from features.
Definition qgis.h:6652
@ Attribute
Take value from feature's attribute.
Definition qgis.h:6653
Contains information about the context in which a coordinate transform is executed.
An interface for objects which provide features via a getFeatures method.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
A geometry is the spatial representation of a feature.
QVector< QgsInterpolatorVertexData > mCachedBaseData
Cached vertex data for input sources.
virtual int interpolatePoint(double x, double y, double &result, QgsFeedback *feedback=nullptr)=0
Calculates interpolation value for map coordinates x, y.
QgsInterpolator(const QList< QgsInterpolator::LayerData > &layerData)
bool mDataIsCached
Flag that tells if the cache already has been filled.
QList< LayerData > layerData() const
QList< LayerData > mLayerData
Information about the input vector layers and the attributes (or z-values) that are used for interpol...
virtual ~QgsInterpolator()=default
Result
Result of an interpolation operation.
#define SIP_SKIP
Definition qgis_sip.h:133
#define SIP_OUT
Definition qgis_sip.h:57
QgsInterpolatorVertexData()=default
double y
Y-coordinate.
QgsInterpolatorVertexData(double x, double y, double z)
Constructor for QgsInterpolatorVertexData with the specified x, y, and z coordinate.
double z
Z-coordinate.
double x
X-coordinate.
A source together with the information about interpolation attribute / z-coordinate interpolation and...
QgsFeatureSource * source
Feature source.
Qgis::InterpolationSourceType sourceType
Source type.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
int interpolationAttribute
Index of feature attribute to use for interpolation.
Qgis::InterpolationValueSource valueSource
Source for feature values to interpolate.