Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmextractzmvalues.h 3 : : --------------------------------- 4 : : begin : January 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 QGSALGORITHMEXTRACTZMVALUES_H 19 : : #define QGSALGORITHMEXTRACTZMVALUES_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : #include "qgsstatisticalsummary.h" 26 : : #include <functional> 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : : /** 31 : : * Native add incremental field algorithm. 32 : : */ 33 : 0 : class QgsExtractZMValuesAlgorithmBase : public QgsProcessingFeatureBasedAlgorithm 34 : : { 35 : : 36 : : public: 37 : : 38 : 0 : QgsExtractZMValuesAlgorithmBase() = default; 39 : : QString group() const override; 40 : : QString groupId() const override; 41 : : QList<int> inputLayerTypes() const override; 42 : : 43 : : protected: 44 : : 45 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 46 : : QString outputName() const override; 47 : : QgsFields outputFields( const QgsFields &inputFields ) const override; 48 : : QgsProcessingFeatureSource::Flag sourceFlags() const override; 49 : : 50 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 51 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 52 : : bool supportInPlaceEdit( const QgsMapLayer *layer ) const override; 53 : : 54 : : protected: 55 : : 56 : : std::function<double( const QgsPoint & )> mExtractValFunc; 57 : : std::function<bool( const QgsGeometry & )> mTestGeomFunc; 58 : : QString mDefaultFieldPrefix; 59 : : private: 60 : : 61 : : QList< QgsStatisticalSummary::Statistic > mSelectedStats; 62 : 0 : QgsStatisticalSummary::Statistics mStats = QgsStatisticalSummary::All; 63 : : QString mPrefix; 64 : : QgsFields mNewFields; 65 : : 66 : : 67 : : }; 68 : : 69 : : /** 70 : : * Native extract z values algorithm. 71 : : */ 72 : 0 : class QgsExtractZValuesAlgorithm : public QgsExtractZMValuesAlgorithmBase 73 : : { 74 : : public: 75 : : QgsExtractZValuesAlgorithm(); 76 : : 77 : : QString name() const override; 78 : : QString displayName() const override; 79 : : QgsProcessingAlgorithm *createInstance() const override; 80 : : QStringList tags() const override; 81 : : QString shortHelpString() const override; 82 : : QString shortDescription() const override; 83 : : 84 : : }; 85 : : 86 : : 87 : : /** 88 : : * Native extract m values algorithm. 89 : : */ 90 : 0 : class QgsExtractMValuesAlgorithm : public QgsExtractZMValuesAlgorithmBase 91 : : { 92 : : public: 93 : : QgsExtractMValuesAlgorithm(); 94 : : 95 : : QString name() const override; 96 : : QString displayName() const override; 97 : : QgsProcessingAlgorithm *createInstance() const override; 98 : : QStringList tags() const override; 99 : : QString shortHelpString() const override; 100 : : QString shortDescription() const override; 101 : : 102 : : }; 103 : : 104 : : ///@endcond PRIVATE 105 : : 106 : : #endif // QGSALGORITHMEXTRACTZMVALUES_H 107 : : 108 : :