QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsalgorithmsetmvalue.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmsetmvalue.cpp
3 ---------------------
4 begin : November 2019
5 copyright : (C) 2019 by Alexander Bruy
6 email : alexander dot bruy 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
19
20#include "qgsvectorlayer.h"
21
23
24QString QgsSetMValueAlgorithm::name() const
25{
26 return QStringLiteral( "setmvalue" );
27}
28
29QString QgsSetMValueAlgorithm::displayName() const
30{
31 return QObject::tr( "Set M value" );
32}
33
34QStringList QgsSetMValueAlgorithm::tags() const
35{
36 return QObject::tr( "set,add,m,measure,values" ).split( ',' );
37}
38
39QString QgsSetMValueAlgorithm::group() const
40{
41 return QObject::tr( "Vector geometry" );
42}
43
44QString QgsSetMValueAlgorithm::groupId() const
45{
46 return QStringLiteral( "vectorgeometry" );
47}
48
49QString QgsSetMValueAlgorithm::shortHelpString() const
50{
51 return QObject::tr( "This algorithm sets the M value for geometries in a layer.\n\n"
52 "If M values already exist in the layer, they will be overwritten "
53 "with the new value. If no M values exist, the geometry will be "
54 "upgraded to include M values and the specified value used as "
55 "the initial M value for all geometries." );
56}
57
58QString QgsSetMValueAlgorithm::shortDescription() const
59{
60 return QObject::tr( "Sets the M value for geometries in a layer." );
61}
62
63QString QgsSetMValueAlgorithm::outputName() const
64{
65 return QObject::tr( "M Added" );
66}
67
68QgsSetMValueAlgorithm *QgsSetMValueAlgorithm::createInstance() const
69{
70 return new QgsSetMValueAlgorithm();
71}
72
73bool QgsSetMValueAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const
74{
75 const QgsVectorLayer *layer = qobject_cast<const QgsVectorLayer *>( l );
76 if ( !layer )
77 return false;
78
80}
81
82Qgis::ProcessingFeatureSourceFlags QgsSetMValueAlgorithm::sourceFlags() const
83{
85}
86
87Qgis::WkbType QgsSetMValueAlgorithm::outputWkbType( Qgis::WkbType type ) const
88{
89 return QgsWkbTypes::addM( type );
90}
91
92void QgsSetMValueAlgorithm::initParameters( const QVariantMap & )
93{
94 auto mValueParam = std::make_unique<QgsProcessingParameterNumber>( QStringLiteral( "M_VALUE" ), QObject::tr( "M Value" ), Qgis::ProcessingNumberParameterType::Double, 0.0 );
95 mValueParam->setIsDynamic( true );
96 mValueParam->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "M_VALUE" ), QObject::tr( "M Value" ), QgsPropertyDefinition::Double ) );
97 mValueParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
98 addParameter( mValueParam.release() );
99}
100
101bool QgsSetMValueAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
102{
103 mMValue = parameterAsDouble( parameters, QStringLiteral( "M_VALUE" ), context );
104 mDynamicMValue = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "M_VALUE" ) );
105 if ( mDynamicMValue )
106 mMValueProperty = parameters.value( QStringLiteral( "M_VALUE" ) ).value<QgsProperty>();
107
108 return true;
109}
110
111QgsFeatureList QgsSetMValueAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * )
112{
113 QgsFeature f = feature;
114
115 if ( f.hasGeometry() )
116 {
117 std::unique_ptr<QgsAbstractGeometry> newGeometry( f.geometry().constGet()->clone() );
118 // addMValue won't alter existing M values, so drop them first
119 if ( QgsWkbTypes::hasM( newGeometry->wkbType() ) )
120 newGeometry->dropMValue();
121
122 double m = mMValue;
123 if ( mDynamicMValue )
124 m = mMValueProperty.valueAsDouble( context.expressionContext(), m );
125
126 newGeometry->addMValue( m );
127
128 f.setGeometry( QgsGeometry( std::move( newGeometry ) ) );
129 }
130
131 return QgsFeatureList() << f;
132}
133
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
Definition qgis.h:3711
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:277
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Definition qgis.h:3722
@ Double
Double/float values.
Definition qgis.h:3804
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsGeometry geometry
Definition qgsfeature.h:69
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
Base class for all map layer types.
Definition qgsmaplayer.h:80
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
bool supportInPlaceEdit(const QgsMapLayer *layer) const override
Checks whether this algorithm supports in-place editing on the given layer Default implementation for...
Base class for providing feedback from a processing algorithm.
static bool isDynamic(const QVariantMap &parameters, const QString &name)
Returns true if the parameter with matching name is a dynamic parameter, and must be evaluated once f...
Definition for a property.
Definition qgsproperty.h:45
@ Double
Double value (including negative values).
Definition qgsproperty.h:55
A store for object properties.
Represents a vector layer which manages a vector based dataset.
Q_INVOKABLE Qgis::WkbType wkbType() const final
Returns the WKBType or WKBUnknown in case of error.
static Qgis::WkbType addM(Qgis::WkbType type)
Adds the m dimension to a WKB type and returns the new type.
static Q_INVOKABLE bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
QList< QgsFeature > QgsFeatureList