Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmreclassifybylayer.h 3 : : --------------------- 4 : : begin : June, 2018 5 : : copyright : (C) 2018 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 QGSALGORITHMRECLASSIFYBYLAYER_H 19 : : #define QGSALGORITHMRECLASSIFYBYLAYER_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : #include "qgsreclassifyutils.h" 26 : : 27 : : ///@cond PRIVATE 28 : : 29 : : /** 30 : : * Base class for reclassify algorithms. 31 : : */ 32 : 0 : class QgsReclassifyAlgorithmBase : public QgsProcessingAlgorithm 33 : : { 34 : : public: 35 : : 36 : : QString group() const final; 37 : : QString groupId() const final; 38 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) final; 39 : : 40 : : protected: 41 : : 42 : : /** 43 : : * Adds specific subclass algorithm parameters. The common parameters, such as raster destination, are automatically 44 : : * added by the base class. 45 : : */ 46 : : virtual void addAlgorithmParams() = 0; 47 : : 48 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) final; 49 : : 50 : : /** 51 : : * Prepares the reclassify algorithm subclass for execution. 52 : : */ 53 : : virtual bool _prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) = 0; 54 : : 55 : : /** 56 : : * Returns a list of classes to use during the reclassification. 57 : : */ 58 : : virtual QVector< QgsReclassifyUtils::RasterClass > createClasses( 59 : : QgsReclassifyUtils::RasterClass::BoundsType boundsType, 60 : : const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) = 0; 61 : : 62 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 63 : : QgsProcessingContext &context, QgsProcessingFeedback *feedback ) final; 64 : : 65 : : std::unique_ptr< QgsRasterInterface > mInterface; 66 : : 67 : 0 : Qgis::DataType mDataType = Qgis::Float32; 68 : 0 : double mNoDataValue = -9999; 69 : 0 : int mBand = 1; 70 : : QgsRectangle mExtent; 71 : : QgsCoordinateReferenceSystem mCrs; 72 : 0 : double mRasterUnitsPerPixelX = 0; 73 : 0 : double mRasterUnitsPerPixelY = 0; 74 : 0 : int mNbCellsXProvider = 0; 75 : 0 : int mNbCellsYProvider = 0; 76 : 0 : QgsReclassifyUtils::RasterClass::BoundsType mBoundsType = QgsReclassifyUtils::RasterClass::IncludeMax; 77 : 0 : bool mUseNoDataForMissingValues = false; 78 : : }; 79 : : 80 : : /** 81 : : * Native reclassify by layer algorithm. 82 : : */ 83 : 0 : class QgsReclassifyByLayerAlgorithm : public QgsReclassifyAlgorithmBase 84 : : { 85 : : 86 : : public: 87 : : 88 : 0 : QgsReclassifyByLayerAlgorithm() = default; 89 : : QString name() const override; 90 : : QString displayName() const override; 91 : : QStringList tags() const override; 92 : : QString shortHelpString() const override; 93 : : QgsReclassifyByLayerAlgorithm *createInstance() const override SIP_FACTORY; 94 : : 95 : : protected: 96 : : void addAlgorithmParams() override; 97 : : bool _prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 98 : : QVector< QgsReclassifyUtils::RasterClass > createClasses( 99 : : QgsReclassifyUtils::RasterClass::BoundsType boundsType, 100 : : const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 101 : : 102 : : private: 103 : 0 : int mMinFieldIdx = -1; 104 : 0 : int mMaxFieldIdx = -1; 105 : 0 : int mValueFieldIdx = -1; 106 : : QgsFeatureIterator mTableIterator; 107 : : 108 : : }; 109 : : 110 : : /** 111 : : * Native reclassify by table algorithm. 112 : : */ 113 : 0 : class QgsReclassifyByTableAlgorithm : public QgsReclassifyAlgorithmBase 114 : : { 115 : : 116 : : public: 117 : : 118 : 0 : QgsReclassifyByTableAlgorithm() = default; 119 : : QString name() const override; 120 : : QString displayName() const override; 121 : : QStringList tags() const override; 122 : : QString shortHelpString() const override; 123 : : QgsReclassifyByTableAlgorithm *createInstance() const override SIP_FACTORY; 124 : : 125 : : protected: 126 : : 127 : : void addAlgorithmParams() override; 128 : : bool _prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 129 : : QVector< QgsReclassifyUtils::RasterClass > createClasses( QgsReclassifyUtils::RasterClass::BoundsType boundsType, 130 : : const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 131 : : 132 : : }; 133 : : 134 : : ///@endcond PRIVATE 135 : : 136 : : #endif // QGSALGORITHMRECLASSIFYBYLAYER_H 137 : : 138 : :