Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmrasterlogicalop.h 3 : : --------------------- 4 : : begin : March 2019 5 : : copyright : (C) 2019 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 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 QGSALGORITHMRASTERLOGICALOP_H 19 : : #define QGSALGORITHMRASTERLOGICALOP_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : #include "qgsrasterprojector.h" 26 : : #include "qgsrasteranalysisutils.h" 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : : /** 31 : : * Base class for raster boolean logic algorithms 32 : : */ 33 : 0 : class ANALYSIS_EXPORT QgsRasterBooleanLogicAlgorithmBase : public QgsProcessingAlgorithm 34 : : { 35 : : 36 : : public: 37 : : 38 : 0 : QgsRasterBooleanLogicAlgorithmBase() = default; 39 : : 40 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 41 : : QStringList tags() const override; 42 : : QString group() const override; 43 : : QString groupId() const override; 44 : : 45 : : protected: 46 : : 47 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 48 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 49 : : QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 50 : : 51 : : std::function<void( const std::vector< std::unique_ptr< QgsRasterBlock > > &, bool &, bool &, int, int, bool )> mExtractValFunc; 52 : : 53 : : private: 54 : : 55 : : std::vector< QgsRasterAnalysisUtils::RasterLogicInput > mInputs; 56 : 0 : Qgis::DataType mDataType = Qgis::Float32; 57 : 0 : double mNoDataValue = -9999; 58 : : int mLayerWidth; 59 : : int mLayerHeight; 60 : : QgsRectangle mExtent; 61 : : QgsCoordinateReferenceSystem mCrs; 62 : : double mRasterUnitsPerPixelX; 63 : : double mRasterUnitsPerPixelY; 64 : 0 : bool mTreatNodataAsFalse = false; 65 : : friend class TestQgsProcessingAlgs; 66 : : }; 67 : : 68 : : /** 69 : : * Native raster boolean OR operation algorithm. 70 : : */ 71 : 0 : class ANALYSIS_EXPORT QgsRasterLogicalOrAlgorithm : public QgsRasterBooleanLogicAlgorithmBase 72 : : { 73 : : 74 : : public: 75 : : 76 : : QgsRasterLogicalOrAlgorithm(); 77 : : 78 : : QString name() const override; 79 : : QString displayName() const override; 80 : : QString shortHelpString() const override; 81 : : QString shortDescription() const override; 82 : : QgsRasterLogicalOrAlgorithm *createInstance() const override SIP_FACTORY; 83 : : 84 : : }; 85 : : 86 : : /** 87 : : * Native raster boolean AND operation algorithm. 88 : : */ 89 : 0 : class ANALYSIS_EXPORT QgsRasterLogicalAndAlgorithm : public QgsRasterBooleanLogicAlgorithmBase 90 : : { 91 : : 92 : : public: 93 : : 94 : : QgsRasterLogicalAndAlgorithm(); 95 : : 96 : : QString name() const override; 97 : : QString displayName() const override; 98 : : QString shortHelpString() const override; 99 : : QString shortDescription() const override; 100 : : QgsRasterLogicalAndAlgorithm *createInstance() const override SIP_FACTORY; 101 : : 102 : : }; 103 : : 104 : : ///@endcond PRIVATE 105 : : 106 : : #endif // QGSALGORITHMRASTERLOGICALOP_H 107 : : 108 : :