Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmrasterzonalstats.h 3 : : --------------------- 4 : : begin : December 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 QGSALGORITHMRASTERZONALSTATS_H 19 : : #define QGSALGORITHMRASTERZONALSTATS_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : #include "qgsrasterprojector.h" 26 : : 27 : : ///@cond PRIVATE 28 : : 29 : : /** 30 : : * Native raster layer unique values report algorithm. 31 : : */ 32 : 0 : class QgsRasterLayerZonalStatsAlgorithm : public QgsProcessingAlgorithm 33 : : { 34 : : 35 : : public: 36 : : 37 : 0 : QgsRasterLayerZonalStatsAlgorithm() = default; 38 : : 39 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 40 : : QString name() const override; 41 : : QString displayName() const override; 42 : : QStringList tags() const override; 43 : : QString group() const override; 44 : : QString groupId() const override; 45 : : QString shortHelpString() const override; 46 : : QString shortDescription() const override; 47 : : QgsRasterLayerZonalStatsAlgorithm *createInstance() const override SIP_FACTORY; 48 : : 49 : : protected: 50 : : 51 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 52 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 53 : : QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 54 : : 55 : : private: 56 : : 57 : : enum RefLayer 58 : : { 59 : : Source, 60 : : Zones 61 : : }; 62 : : 63 : : std::unique_ptr< QgsRasterInterface > mSourceDataProvider; 64 : : std::unique_ptr< QgsRasterInterface > mZonesDataProvider; 65 : : std::unique_ptr< QgsRasterProjector> mProjector; 66 : 0 : QgsRasterInterface *mSourceInterface = nullptr; 67 : 0 : QgsRasterInterface *mZonesInterface = nullptr; 68 : 0 : bool mHasNoDataValue = false; 69 : 0 : bool mZonesHasNoDataValue = false; 70 : 0 : int mBand = 1; 71 : 0 : int mZonesBand = 1; 72 : : int mLayerWidth; 73 : : int mLayerHeight; 74 : : QgsRectangle mExtent; 75 : : QgsCoordinateReferenceSystem mCrs; 76 : : double mRasterUnitsPerPixelX; 77 : : double mRasterUnitsPerPixelY; 78 : 0 : RefLayer mRefLayer = Source; 79 : : 80 : : }; 81 : : 82 : : ///@endcond PRIVATE 83 : : 84 : : #endif // QGSALGORITHMRASTERZONALSTATS_H 85 : : 86 : :