Branch data Line data Source code
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 : : 18 : : #include "qgsalgorithmdropmzvalues.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsDropMZValuesAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "dropmzvalues" ); 25 : : } 26 : : 27 : 0 : QString QgsDropMZValuesAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Drop M/Z values" ); 30 : : } 31 : : 32 : 0 : QStringList QgsDropMZValuesAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "drop,set,convert,m,measure,z,25d,3d,values" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsDropMZValuesAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsDropMZValuesAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsDropMZValuesAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Z/M Dropped" ); 50 : : } 51 : : 52 : 0 : QString QgsDropMZValuesAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm can remove any measure (M) or Z values from input geometries." ); 55 : : } 56 : : 57 : 0 : QgsDropMZValuesAlgorithm *QgsDropMZValuesAlgorithm::createInstance() const 58 : : { 59 : 0 : return new QgsDropMZValuesAlgorithm(); 60 : : } 61 : : 62 : 0 : bool QgsDropMZValuesAlgorithm::supportInPlaceEdit( const QgsMapLayer *layer ) const 63 : : { 64 : : Q_UNUSED( layer ) 65 : 0 : return false; 66 : : } 67 : : 68 : 0 : void QgsDropMZValuesAlgorithm::initParameters( const QVariantMap & ) 69 : : { 70 : 0 : addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_M_VALUES" ), QObject::tr( "Drop M Values" ), false ) ); 71 : 0 : addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "DROP_Z_VALUES" ), QObject::tr( "Drop Z Values" ), false ) ); 72 : 0 : } 73 : : 74 : 0 : QgsWkbTypes::Type QgsDropMZValuesAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 75 : : { 76 : 0 : QgsWkbTypes::Type wkb = inputWkbType; 77 : 0 : if ( mDropM ) 78 : 0 : wkb = QgsWkbTypes::dropM( wkb ); 79 : 0 : if ( mDropZ ) 80 : 0 : wkb = QgsWkbTypes::dropZ( wkb ); 81 : 0 : return wkb; 82 : : } 83 : : 84 : 0 : QgsProcessingFeatureSource::Flag QgsDropMZValuesAlgorithm::sourceFlags() const 85 : : { 86 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 87 : : } 88 : : 89 : 0 : bool QgsDropMZValuesAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 90 : : { 91 : 0 : mDropM = parameterAsBoolean( parameters, QStringLiteral( "DROP_M_VALUES" ), context ); 92 : 0 : mDropZ = parameterAsBoolean( parameters, QStringLiteral( "DROP_Z_VALUES" ), context ); 93 : 0 : return true; 94 : 0 : } 95 : : 96 : 0 : QgsFeatureList QgsDropMZValuesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 97 : : { 98 : 0 : QgsFeature f = feature; 99 : 0 : if ( f.hasGeometry() ) 100 : : { 101 : 0 : std::unique_ptr< QgsAbstractGeometry > newGeom( f.geometry().constGet()->clone() ); 102 : 0 : if ( mDropM ) 103 : 0 : newGeom->dropMValue(); 104 : 0 : if ( mDropZ ) 105 : 0 : newGeom->dropZValue(); 106 : 0 : f.setGeometry( QgsGeometry( newGeom.release() ) ); 107 : 0 : } 108 : : 109 : 0 : return QgsFeatureList() << f; 110 : 0 : } 111 : : 112 : : ///@endcond 113 : :