QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsrastercalcnode.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsrastercalcnode.h
3 Node for raster calculator tree
4 --------------------
5 begin : 2010-10-23
6 copyright : (C) 20010 by Marco Hugentobler
7 email : marco dot hugentobler at sourcepole dot ch
8***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef QGSRASTERCALCNODE_H
20#define QGSRASTERCALCNODE_H
21
22#include <QMap>
23#include "qgis_sip.h"
24#include "qgis.h"
25#include <QString>
26#include "qgis_analysis.h"
27
28#include <QVector>
29
30class QgsRasterBlock;
31class QgsRasterMatrix;
32
38class ANALYSIS_EXPORT QgsRasterCalcNode
39{
40 public:
42 enum Type
43 {
44 tOperator = 1,
48 tFunction
49 };
50
82
83 QgsRasterCalcNode() = default;
84
85 QgsRasterCalcNode( double number );
89 QgsRasterCalcNode( QString functionName, QVector<QgsRasterCalcNode *> functionArgs );
90 QgsRasterCalcNode( const QString &rasterName );
92
93 QgsRasterCalcNode( const QgsRasterCalcNode &rh ) = delete;
95
96 Type type() const { return mType; }
97
98 //set left node
100 {
101 delete mLeft;
102 mLeft = left;
103 }
105 {
106 delete mRight;
107 mRight = right;
108 }
109
118 bool calculate( QMap<QString, QgsRasterBlock *> &rasterData, QgsRasterMatrix &result, int row = -1 ) const SIP_SKIP;
119
125 QString toString( bool cStyle = false ) const;
126
131 QList<const QgsRasterCalcNode *> findNodes( const QgsRasterCalcNode::Type type ) const;
132
133 static QgsRasterCalcNode *parseRasterCalcString( const QString &str, QString &parserErrorMsg ) SIP_FACTORY;
134
140 QStringList referencedLayerNames() const;
141
146 QStringList cleanRasterReferences() const;
147
148 private:
149#ifdef SIP_RUN
151#endif
152
157 QgsRasterMatrix evaluateFunction( const std::vector<std::unique_ptr<QgsRasterMatrix>> &matrixVector, QgsRasterMatrix &result ) const;
158
159 Type mType = tNumber;
160 QgsRasterCalcNode *mLeft = nullptr;
161 QgsRasterCalcNode *mRight = nullptr;
162 double mNumber = 0;
163 QString mRasterName;
164 QgsRasterMatrix *mMatrix = nullptr;
165 Operator mOperator = opNONE;
166 //added for the conditional statement
167 QString mFunctionName;
168 QVector<QgsRasterCalcNode *> mFunctionArgs;
169};
170
171
172#endif // QGSRASTERCALCNODE_H
Raster data container.
Represents a node in a raster calculator.
void setLeft(QgsRasterCalcNode *left)
Operator
possible operators
QgsRasterCalcNode()=default
QgsRasterCalcNode(const QgsRasterCalcNode &rh)=delete
QgsRasterCalcNode & operator=(const QgsRasterCalcNode &rh)=delete
void setRight(QgsRasterCalcNode *right)
Type
defines possible types of node
Represents a matrix in a raster calculator operation.
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_FACTORY
Definition qgis_sip.h:76