QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
18 #ifndef QGSALGORITHMFILTERVERTICES_H
19 #define QGSALGORITHMFILTERVERTICES_H
37 QString
group()
const override final;
38 QString
groupId()
const override final;
40 void initParameters(
const QVariantMap &configuration = QVariantMap() )
override final;
51 bool mDynamicMin =
false;
55 bool mDynamicMax =
false;
58 virtual QString componentString()
const = 0;
59 virtual void filter(
QgsGeometry &geometry,
double min,
double max )
const = 0;
65 class QgsFilterVerticesByM :
public QgsFilterVerticesAlgorithmBase
70 QgsFilterVerticesByM() =
default;
71 QString name()
const override;
72 QString displayName()
const override;
73 QStringList tags()
const override;
74 QgsFilterVerticesByM *createInstance() const override
SIP_FACTORY;
75 bool supportInPlaceEdit( const
QgsMapLayer *layer ) const override;
79 QString componentString() const override;
80 void filter(
QgsGeometry &geometry,
double min,
double max ) const override;
88 class QgsFilterVerticesByZ : public QgsFilterVerticesAlgorithmBase
93 QgsFilterVerticesByZ() =
default;
94 QString name()
const override;
95 QString displayName()
const override;
96 QStringList tags()
const override;
97 QgsFilterVerticesByZ *createInstance() const override
SIP_FACTORY;
98 bool supportInPlaceEdit( const
QgsMapLayer *layer ) const override;
102 QString componentString() const override;
103 void filter(
QgsGeometry &geometry,
double min,
double max ) const override;
109 #endif // QGSALGORITHMFILTERVERTICES_H
A store for object properties.
virtual void initParameters(const QVariantMap &configuration=QVariantMap())
Initializes any extra parameters added by the algorithm subclass.
virtual QString groupId() const
Returns the unique ID of the group this algorithm belongs to.
virtual bool prepareAlgorithm(const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback) SIP_THROW(QgsProcessingException)
Prepares the algorithm to run using the specified parameters.
virtual QgsFeatureList processFeature(const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback) SIP_THROW(QgsProcessingException)=0
Processes an individual input feature from the source.
QList< QgsFeature > QgsFeatureList
virtual QString shortHelpString() const
Returns a localised short helper string for the algorithm.
virtual QString outputName() const =0
Returns the translated, user visible name for any layers created by this algorithm.
virtual QString group() const
Returns the name of the group this algorithm belongs to.
virtual QList< int > inputLayerTypes() const
Returns the valid input layer types for the source layer for this algorithm.