Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmpointsinpolygon.h 3 : : --------------------- 4 : : begin : November 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 QGSALGORITHMPOINTSINPOLYGON_H 19 : : #define QGSALGORITHMPOINTSINPOLYGON_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : 26 : : ///@cond PRIVATE 27 : : 28 : : /** 29 : : * Native points in polygon algorithm 30 : : */ 31 : 0 : class QgsPointsInPolygonAlgorithm : public QgsProcessingFeatureBasedAlgorithm 32 : : { 33 : : 34 : : public: 35 : : 36 : 0 : QgsPointsInPolygonAlgorithm() = default; 37 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 38 : : QString name() const override; 39 : : QString displayName() const override; 40 : : QStringList tags() const override; 41 : : QString svgIconPath() const override; 42 : : QIcon icon() const override; 43 : : QString group() const override; 44 : : QString groupId() const override; 45 : : QString shortHelpString() const override; 46 : : QString shortDescription() const override; 47 : : QgsPointsInPolygonAlgorithm *createInstance() const override SIP_FACTORY; 48 : : QList<int> inputLayerTypes() const override; 49 : : QgsProcessing::SourceType outputLayerType() const override; 50 : : QgsCoordinateReferenceSystem outputCrs( const QgsCoordinateReferenceSystem &inputCrs ) const override; 51 : : 52 : : 53 : : protected: 54 : : QString inputParameterName() const override; 55 : : QString inputParameterDescription() const override; 56 : : QString outputName() const override; 57 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 58 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 59 : : QgsFields outputFields( const QgsFields &inputFields ) const override; 60 : : bool supportInPlaceEdit( const QgsMapLayer *layer ) const override; 61 : : 62 : : private: 63 : 0 : bool mIsInPlace = false; 64 : : QString mFieldName; 65 : : QString mWeightFieldName; 66 : : QString mClassFieldName; 67 : 0 : int mWeightFieldIndex = -1; 68 : 0 : int mClassFieldIndex = -1; 69 : 0 : mutable int mDestFieldIndex = -1; 70 : : mutable QgsFields mFields; 71 : : mutable QgsCoordinateReferenceSystem mCrs; 72 : : QgsAttributeList mPointAttributes; 73 : : std::unique_ptr< QgsProcessingFeatureSource > mPointSource; 74 : : 75 : : }; 76 : : 77 : : ///@endcond PRIVATE 78 : : 79 : : #endif // QGSALGORITHMPOINTSINPOLYGON_H 80 : : 81 : :