Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmboundary.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 "qgsalgorithmboundary.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsBoundaryAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "boundary" ); 26 : : } 27 : : 28 : 0 : QString QgsBoundaryAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Boundary" ); 31 : : } 32 : : 33 : 0 : QStringList QgsBoundaryAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "boundary,ring,border,exterior" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsBoundaryAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsBoundaryAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsBoundaryAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Boundary" ); 51 : : } 52 : : 53 : 0 : QString QgsBoundaryAlgorithm::shortHelpString() const 54 : : { 55 : 0 : return QObject::tr( "Returns the closure of the combinatorial boundary of the input geometries (ie the " 56 : : "topological boundary of the geometry). For instance, a polygon geometry will have a " 57 : : "boundary consisting of the linestrings for each ring in the polygon. Only valid for " 58 : : "polygon or line layers." ); 59 : : } 60 : : 61 : 0 : QList<int> QgsBoundaryAlgorithm::inputLayerTypes() const 62 : : { 63 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon; 64 : 0 : } 65 : : 66 : 0 : bool QgsBoundaryAlgorithm::supportInPlaceEdit( const QgsMapLayer * ) const 67 : : { 68 : 0 : return false; 69 : : } 70 : : 71 : 0 : QgsBoundaryAlgorithm *QgsBoundaryAlgorithm::createInstance() const 72 : : { 73 : 0 : return new QgsBoundaryAlgorithm(); 74 : : } 75 : : 76 : 0 : QgsProcessingFeatureSource::Flag QgsBoundaryAlgorithm::sourceFlags() const 77 : : { 78 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 79 : : } 80 : : 81 : 0 : QgsWkbTypes::Type QgsBoundaryAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 82 : : { 83 : 0 : QgsWkbTypes::Type outputWkb = QgsWkbTypes::Unknown; 84 : 0 : switch ( QgsWkbTypes::geometryType( inputWkbType ) ) 85 : : { 86 : : case QgsWkbTypes::LineGeometry: 87 : 0 : outputWkb = QgsWkbTypes::MultiPoint; 88 : 0 : break; 89 : : 90 : : case QgsWkbTypes::PolygonGeometry: 91 : 0 : outputWkb = QgsWkbTypes::MultiLineString; 92 : 0 : break; 93 : : 94 : : case QgsWkbTypes::PointGeometry: 95 : : case QgsWkbTypes::UnknownGeometry: 96 : : case QgsWkbTypes::NullGeometry: 97 : 0 : outputWkb = QgsWkbTypes::NoGeometry; 98 : 0 : break; 99 : : } 100 : : 101 : 0 : if ( QgsWkbTypes::hasZ( inputWkbType ) ) 102 : 0 : outputWkb = QgsWkbTypes::addZ( outputWkb ); 103 : 0 : if ( QgsWkbTypes::hasM( inputWkbType ) ) 104 : 0 : outputWkb = QgsWkbTypes::addM( outputWkb ); 105 : : 106 : 0 : return outputWkb; 107 : : } 108 : : 109 : 0 : QgsFeatureList QgsBoundaryAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback ) 110 : : { 111 : 0 : QgsFeature outFeature = feature; 112 : : 113 : 0 : if ( feature.hasGeometry() ) 114 : : { 115 : 0 : QgsGeometry inputGeometry = feature.geometry(); 116 : 0 : QgsGeometry outputGeometry = QgsGeometry( inputGeometry.constGet()->boundary() ); 117 : 0 : if ( outputGeometry.isNull() ) 118 : : { 119 : 0 : feedback->reportError( QObject::tr( "No boundary for feature %1 (possibly a closed linestring?)'" ).arg( feature.id() ) ); 120 : 0 : outFeature.clearGeometry(); 121 : 0 : } 122 : : else 123 : : { 124 : 0 : outFeature.setGeometry( outputGeometry ); 125 : : } 126 : 0 : } 127 : 0 : return QgsFeatureList() << outFeature; 128 : 0 : } 129 : : 130 : : ///@endcond