QGIS API Documentation 3.43.0-Master (e01d6d7c4c0)
qgsalgorithmdropmzvalues.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmdropmzvalues.cpp
3 ---------------------
4 begin : April 2017
5 copyright : (C) 2017 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
19
21
22QString QgsDropMZValuesAlgorithm::name() const
23{
24 return QStringLiteral( "dropmzvalues" );
25}
26
27QString QgsDropMZValuesAlgorithm::displayName() const
28{
29 return QObject::tr( "Drop M/Z values" );
30}
31
32QStringList QgsDropMZValuesAlgorithm::tags() const
33{
34 return QObject::tr( "drop,set,convert,m,measure,z,25d,3d,values" ).split( ',' );
35}
36
37QString QgsDropMZValuesAlgorithm::group() const
38{
39 return QObject::tr( "Vector geometry" );
40}
41
42QString QgsDropMZValuesAlgorithm::groupId() const
43{
44 return QStringLiteral( "vectorgeometry" );
45}
46
47QString QgsDropMZValuesAlgorithm::outputName() const
48{
49 return QObject::tr( "Z/M Dropped" );
50}
51
52QString QgsDropMZValuesAlgorithm::shortHelpString() const
53{
54 return QObject::tr( "This algorithm can remove any measure (M) or Z values from input geometries." );
55}
56
57QString QgsDropMZValuesAlgorithm::shortDescription() const
58{
59 return QObject::tr( "Removes any measure (M) or Z values from input geometries." );
60}
61
62QgsDropMZValuesAlgorithm *QgsDropMZValuesAlgorithm::createInstance() const
63{
64 return new QgsDropMZValuesAlgorithm();
65}
66
67bool QgsDropMZValuesAlgorithm::supportInPlaceEdit( const QgsMapLayer *layer ) const
68{
69 Q_UNUSED( layer )
70 return false;
71}
72
73void QgsDropMZValuesAlgorithm::initParameters( const QVariantMap & )
74{
75 addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_M_VALUES" ), QObject::tr( "Drop M Values" ), false ) );
76 addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_Z_VALUES" ), QObject::tr( "Drop Z Values" ), false ) );
77}
78
79Qgis::WkbType QgsDropMZValuesAlgorithm::outputWkbType( Qgis::WkbType inputWkbType ) const
80{
81 Qgis::WkbType wkb = inputWkbType;
82 if ( mDropM )
83 wkb = QgsWkbTypes::dropM( wkb );
84 if ( mDropZ )
85 wkb = QgsWkbTypes::dropZ( wkb );
86 return wkb;
87}
88
89Qgis::ProcessingFeatureSourceFlags QgsDropMZValuesAlgorithm::sourceFlags() const
90{
92}
93
94bool QgsDropMZValuesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
95{
96 mDropM = parameterAsBoolean( parameters, QStringLiteral( "DROP_M_VALUES" ), context );
97 mDropZ = parameterAsBoolean( parameters, QStringLiteral( "DROP_Z_VALUES" ), context );
98 return true;
99}
100
101QgsFeatureList QgsDropMZValuesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * )
102{
103 QgsFeature f = feature;
104 if ( f.hasGeometry() )
105 {
106 std::unique_ptr<QgsAbstractGeometry> newGeom( f.geometry().constGet()->clone() );
107 if ( mDropM )
108 newGeom->dropMValue();
109 if ( mDropZ )
110 newGeom->dropZValue();
111 f.setGeometry( QgsGeometry( newGeom.release() ) );
112 }
113
114 return QgsFeatureList() << f;
115}
116
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:256
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Definition qgis.h:3588
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:77
Contains information about the context in which a processing algorithm is executed.
Base class for providing feedback from a processing algorithm.
A boolean parameter for processing algorithms.
static Qgis::WkbType dropM(Qgis::WkbType type)
Drops the m dimension (if present) for a WKB type and returns the new type.
static Qgis::WkbType dropZ(Qgis::WkbType type)
Drops the z dimension (if present) for a WKB type and returns the new type.
QList< QgsFeature > QgsFeatureList