Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmzonalstatisticsfeaturebased.h 3 : : ------------------------------ 4 : : begin : September 2020 5 : : copyright : (C) 2020 Matthias Kuhn 6 : : email : matthias@opengis.ch 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 QGSALGORITHMZONALSTATISTICSFEATUREBASED_H 19 : : #define QGSALGORITHMZONALSTATISTICSFEATUREBASED_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : #include "qgsvectorlayer.h" 26 : : #include "vector/qgszonalstatistics.h" 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : : /** 31 : : * Native zonal statistics algorithm. 32 : : */ 33 : 0 : class QgsZonalStatisticsFeatureBasedAlgorithm : public QgsProcessingFeatureBasedAlgorithm 34 : : { 35 : : 36 : : public: 37 : : 38 : 0 : QgsZonalStatisticsFeatureBasedAlgorithm() = default; 39 : : QString name() const override; 40 : : QString displayName() const override; 41 : : QStringList tags() const override; 42 : : QString group() const override; 43 : : QString groupId() const override; 44 : : QString shortHelpString() const override; 45 : : QList<int> inputLayerTypes() const override; 46 : : 47 : : QgsZonalStatisticsFeatureBasedAlgorithm *createInstance() const override SIP_FACTORY; 48 : : 49 : : protected: 50 : : 51 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 52 : : QString outputName() const override; 53 : : QgsFields outputFields( const QgsFields &inputFields ) const override; 54 : : 55 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 56 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 57 : : bool supportInPlaceEdit( const QgsMapLayer *layer ) const override; 58 : : 59 : : private: 60 : : std::unique_ptr< QgsRasterInterface > mRaster; 61 : : int mBand; 62 : : QString mPrefix; 63 : 0 : QgsZonalStatistics::Statistics mStats = QgsZonalStatistics::All; 64 : : QgsCoordinateReferenceSystem mCrs; 65 : : double mPixelSizeX; 66 : : double mPixelSizeY; 67 : : QgsFields mOutputFields; 68 : : QMap<QgsZonalStatistics::Statistic, int> mStatFieldsMapping; 69 : : }; 70 : : 71 : : ///@endcond PRIVATE 72 : : 73 : : #endif // QGSALGORITHMZONALSTATISTICSFEATUREBASED_H