QGIS API Documentation  3.2.0-Bonn (bc43194)
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 
22 QString QgsDropMZValuesAlgorithm::name() const
23 {
24  return QStringLiteral( "dropmzvalues" );
25 }
26 
27 QString QgsDropMZValuesAlgorithm::displayName() const
28 {
29  return QObject::tr( "Drop M/Z values" );
30 }
31 
32 QStringList QgsDropMZValuesAlgorithm::tags() const
33 {
34  return QObject::tr( "drop,set,convert,m,measure,z,25d,3d,values" ).split( ',' );
35 }
36 
37 QString QgsDropMZValuesAlgorithm::group() const
38 {
39  return QObject::tr( "Vector geometry" );
40 }
41 
42 QString QgsDropMZValuesAlgorithm::groupId() const
43 {
44  return QStringLiteral( "vectorgeometry" );
45 }
46 
47 QString QgsDropMZValuesAlgorithm::outputName() const
48 {
49  return QObject::tr( "Z/M Dropped" );
50 }
51 
52 QString QgsDropMZValuesAlgorithm::shortHelpString() const
53 {
54  return QObject::tr( "This algorithm can remove any measure (M) or Z values from input geometries." );
55 }
56 
57 QgsDropMZValuesAlgorithm *QgsDropMZValuesAlgorithm::createInstance() const
58 {
59  return new QgsDropMZValuesAlgorithm();
60 }
61 
62 void QgsDropMZValuesAlgorithm::initParameters( const QVariantMap & )
63 {
64  addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_M_VALUES" ), QObject::tr( "Drop M Values" ), false ) );
65  addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_Z_VALUES" ), QObject::tr( "Drop Z Values" ), false ) );
66 }
67 
68 QgsWkbTypes::Type QgsDropMZValuesAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const
69 {
70  QgsWkbTypes::Type wkb = inputWkbType;
71  if ( mDropM )
72  wkb = QgsWkbTypes::dropM( wkb );
73  if ( mDropZ )
74  wkb = QgsWkbTypes::dropZ( wkb );
75  return wkb;
76 }
77 
78 QgsProcessingFeatureSource::Flag QgsDropMZValuesAlgorithm::sourceFlags() const
79 {
81 }
82 
83 bool QgsDropMZValuesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
84 {
85  mDropM = parameterAsBool( parameters, QStringLiteral( "DROP_M_VALUES" ), context );
86  mDropZ = parameterAsBool( parameters, QStringLiteral( "DROP_Z_VALUES" ), context );
87  return true;
88 }
89 
90 QgsFeatureList QgsDropMZValuesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * )
91 {
92  QgsFeature f = feature;
93  if ( f.hasGeometry() )
94  {
95  std::unique_ptr< QgsAbstractGeometry > newGeom( f.geometry().constGet()->clone() );
96  if ( mDropM )
97  newGeom->dropMValue();
98  if ( mDropZ )
99  newGeom->dropZValue();
100  f.setGeometry( QgsGeometry( newGeom.release() ) );
101  }
102 
103  return QgsFeatureList() << f;
104 }
105 
107 
A boolean parameter for processing algorithms.
Base class for providing feedback from a processing algorithm.
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
QList< QgsFeature > QgsFeatureList
Definition: qgsfeature.h:549
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:104
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:62
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Definition: qgsfeature.cpp:190
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
static Type dropM(Type type)
Drops the m dimension (if present) for a WKB type and returns the new type.
Definition: qgswkbtypes.h:938
Type
The WKB type describes the number of dimensions a geometry has.
Definition: qgswkbtypes.h:67
QgsGeometry geometry() const
Returns the geometry associated with this feature.
Definition: qgsfeature.cpp:101
Flag
Flags controlling how QgsProcessingFeatureSource fetches features.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static Type dropZ(Type type)
Drops the z dimension (if present) for a WKB type and returns the new type.
Definition: qgswkbtypes.h:920
void setGeometry(const QgsGeometry &geometry)
Set the feature&#39;s geometry.
Definition: qgsfeature.cpp:137
Contains information about the context in which a processing algorithm is executed.