QGIS API Documentation 3.39.0-Master (3aed037ce22)
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
99 void setLeft( QgsRasterCalcNode *left ) { delete mLeft; mLeft = left; }
100 void setRight( QgsRasterCalcNode *right ) { delete mRight; mRight = right; }
101
110 bool calculate( QMap<QString, QgsRasterBlock * > &rasterData, QgsRasterMatrix &result, int row = -1 ) const SIP_SKIP;
111
117 QString toString( bool cStyle = false ) const;
118
123 QList<const QgsRasterCalcNode *> findNodes( const QgsRasterCalcNode::Type type ) const;
124
125 static QgsRasterCalcNode *parseRasterCalcString( const QString &str, QString &parserErrorMsg ) SIP_FACTORY;
126
132 QStringList referencedLayerNames( );
133
138 QStringList cleanRasterReferences();
139
140 private:
141#ifdef SIP_RUN
143#endif
144
149 QgsRasterMatrix evaluateFunction( const std::vector< std::unique_ptr< QgsRasterMatrix > > &matrixVector, QgsRasterMatrix &result ) const;
150
151 Type mType = tNumber;
152 QgsRasterCalcNode *mLeft = nullptr;
153 QgsRasterCalcNode *mRight = nullptr;
154 double mNumber = 0;
155 QString mRasterName;
156 QgsRasterMatrix *mMatrix = nullptr;
157 Operator mOperator = opNONE;
158 //added for the conditional statement
159 QString mFunctionName;
160 QVector <QgsRasterCalcNode *> mFunctionArgs;
161};
162
163
164#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 str(x)
Definition qgis.cpp:38
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_FACTORY
Definition qgis_sip.h:76