Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmdropgeometry.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 "qgsalgorithmdropgeometry.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsDropGeometryAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "dropgeometries" ); 26 : : } 27 : : 28 : 0 : QString QgsDropGeometryAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Drop geometries" ); 31 : : } 32 : : 33 : 0 : QStringList QgsDropGeometryAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "remove,drop,delete,geometry,objects" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsDropGeometryAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector general" ); 41 : : } 42 : : 43 : 0 : QString QgsDropGeometryAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeneral" ); 46 : : } 47 : : 48 : 0 : QString QgsDropGeometryAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Dropped geometries" ); 51 : : } 52 : : 53 : 0 : QString QgsDropGeometryAlgorithm::shortHelpString() const 54 : : { 55 : 0 : return QObject::tr( "This algorithm removes any geometries from an input layer and returns a layer containing only the feature attributes." ); 56 : : } 57 : : 58 : 0 : QgsDropGeometryAlgorithm *QgsDropGeometryAlgorithm::createInstance() const 59 : : { 60 : 0 : return new QgsDropGeometryAlgorithm(); 61 : : } 62 : : 63 : 0 : QgsCoordinateReferenceSystem QgsDropGeometryAlgorithm::outputCrs( const QgsCoordinateReferenceSystem & ) const 64 : : { 65 : 0 : return QgsCoordinateReferenceSystem(); 66 : : } 67 : : 68 : 0 : bool QgsDropGeometryAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const 69 : : { 70 : 0 : return qobject_cast< const QgsVectorLayer * >( l ); 71 : : } 72 : : 73 : 0 : QgsWkbTypes::Type QgsDropGeometryAlgorithm::outputWkbType( QgsWkbTypes::Type ) const 74 : : { 75 : 0 : return QgsWkbTypes::NoGeometry; 76 : : } 77 : : 78 : 0 : QgsProcessingFeatureSource::Flag QgsDropGeometryAlgorithm::sourceFlags() const 79 : : { 80 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 81 : : } 82 : : 83 : 0 : QgsFeatureRequest QgsDropGeometryAlgorithm::request() const 84 : : { 85 : 0 : return QgsFeatureRequest().setFlags( QgsFeatureRequest::NoGeometry ); 86 : 0 : } 87 : : 88 : 0 : QgsFeatureList QgsDropGeometryAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 89 : : { 90 : 0 : QgsFeature f = feature; 91 : 0 : f.clearGeometry(); 92 : 0 : return QgsFeatureList() << f; 93 : 0 : } 94 : : 95 : : ///@endcond