Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmpromotetomultipart.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 "qgsalgorithmpromotetomultipart.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsPromoteToMultipartAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "promotetomulti" ); 26 : : } 27 : : 28 : 0 : QString QgsPromoteToMultipartAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Promote to multipart" ); 31 : : } 32 : : 33 : 0 : QStringList QgsPromoteToMultipartAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "multi,single,multiple,convert,force,parts" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsPromoteToMultipartAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsPromoteToMultipartAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsPromoteToMultipartAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Multiparts" ); 51 : : } 52 : : 53 : 0 : QString QgsPromoteToMultipartAlgorithm::shortHelpString() const 54 : : { 55 : 0 : return QObject::tr( "This algorithm takes a vector layer with singlepart geometries and generates a new one in which all geometries are " 56 : 0 : "multipart. Input features which are already multipart features will remain unchanged." ) + 57 : 0 : QStringLiteral( "\n\n" ) + 58 : 0 : QObject::tr( "This algorithm can be used to force geometries to multipart types in order to be compatible with data providers " 59 : 0 : "with strict singlepart/multipart compatibility checks." ) + 60 : 0 : QStringLiteral( "\n\n" ) + 61 : 0 : QObject::tr( "See the 'Collect geometries' or 'Aggregate' algorithms for alternative options." ); 62 : 0 : } 63 : : 64 : 0 : QgsPromoteToMultipartAlgorithm *QgsPromoteToMultipartAlgorithm::createInstance() const 65 : : { 66 : 0 : return new QgsPromoteToMultipartAlgorithm(); 67 : : } 68 : : 69 : 0 : bool QgsPromoteToMultipartAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const 70 : : { 71 : 0 : const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l ); 72 : 0 : if ( !layer ) 73 : 0 : return false; 74 : : 75 : 0 : if ( ! QgsProcessingFeatureBasedAlgorithm::supportInPlaceEdit( layer ) ) 76 : 0 : return false; 77 : 0 : return QgsWkbTypes::isMultiType( layer->wkbType() ); 78 : 0 : } 79 : : 80 : 0 : QgsWkbTypes::Type QgsPromoteToMultipartAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 81 : : { 82 : 0 : return QgsWkbTypes::multiType( inputWkbType ); 83 : : } 84 : : 85 : 0 : QgsProcessingFeatureSource::Flag QgsPromoteToMultipartAlgorithm::sourceFlags() const 86 : : { 87 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 88 : : } 89 : : 90 : 0 : QgsFeatureList QgsPromoteToMultipartAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 91 : : { 92 : 0 : QgsFeature f = feature; 93 : 0 : if ( f.hasGeometry() && !f.geometry().isMultipart() ) 94 : : { 95 : 0 : QgsGeometry g = f.geometry(); 96 : 0 : g.convertToMultiType(); 97 : 0 : f.setGeometry( g ); 98 : 0 : } 99 : 0 : return QgsFeatureList() << f; 100 : 0 : } 101 : : 102 : : ///@endcond 103 : : 104 : :