Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmpolygonstolines.cpp 3 : : --------------------- 4 : : begin : January 2019 5 : : copyright : (C) 2019 by Matthias Kuhn 6 : : email : matthias@opengis.ch 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 "qgsalgorithmpolygonstolines.h" 19 : : #include "qgsgeometrycollection.h" 20 : : #include "qgscurvepolygon.h" 21 : : #include "qgscurve.h" 22 : : #include "qgsmultilinestring.h" 23 : : 24 : : ///@cond PRIVATE 25 : : 26 : 0 : QString QgsPolygonsToLinesAlgorithm::name() const 27 : : { 28 : 0 : return QStringLiteral( "polygonstolines" ); 29 : : } 30 : : 31 : 0 : QString QgsPolygonsToLinesAlgorithm::displayName() const 32 : : { 33 : 0 : return QObject::tr( "Polygons to lines" ); 34 : : } 35 : : 36 : 0 : QStringList QgsPolygonsToLinesAlgorithm::tags() const 37 : : { 38 : 0 : return QObject::tr( "line,polygon,convert" ).split( ',' ); 39 : 0 : } 40 : : 41 : 0 : QString QgsPolygonsToLinesAlgorithm::group() const 42 : : { 43 : 0 : return QObject::tr( "Vector creation" ); 44 : : } 45 : : 46 : 0 : QString QgsPolygonsToLinesAlgorithm::groupId() const 47 : : { 48 : 0 : return QStringLiteral( "vectorgeometry" ); 49 : : } 50 : : 51 : 0 : QString QgsPolygonsToLinesAlgorithm::outputName() const 52 : : { 53 : 0 : return QObject::tr( "Lines" ); 54 : : } 55 : : 56 : 0 : QgsProcessing::SourceType QgsPolygonsToLinesAlgorithm::outputLayerType() const 57 : : { 58 : 0 : return QgsProcessing::TypeVectorLine; 59 : : } 60 : : 61 : 0 : QgsWkbTypes::Type QgsPolygonsToLinesAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 62 : : { 63 : 0 : QgsWkbTypes::Type wkbType = QgsWkbTypes::Unknown; 64 : : 65 : 0 : if ( QgsWkbTypes::singleType( QgsWkbTypes::flatType( inputWkbType ) ) == QgsWkbTypes::Polygon ) 66 : 0 : wkbType = QgsWkbTypes::MultiLineString; 67 : 0 : else if ( QgsWkbTypes::singleType( QgsWkbTypes::flatType( inputWkbType ) ) == QgsWkbTypes::CurvePolygon ) 68 : 0 : wkbType = QgsWkbTypes::MultiCurve; 69 : : 70 : 0 : if ( QgsWkbTypes::hasM( inputWkbType ) ) 71 : 0 : wkbType = QgsWkbTypes::addM( wkbType ); 72 : 0 : if ( QgsWkbTypes::hasZ( inputWkbType ) ) 73 : 0 : wkbType = QgsWkbTypes::addZ( wkbType ); 74 : : 75 : 0 : return wkbType; 76 : : } 77 : : 78 : 0 : QString QgsPolygonsToLinesAlgorithm::shortHelpString() const 79 : : { 80 : 0 : return QObject::tr( "Converts polygons to lines" ); 81 : : } 82 : : 83 : 0 : QString QgsPolygonsToLinesAlgorithm::shortDescription() const 84 : : { 85 : 0 : return QObject::tr( "Converts polygons to lines." ); 86 : : } 87 : : 88 : 0 : QgsPolygonsToLinesAlgorithm *QgsPolygonsToLinesAlgorithm::createInstance() const 89 : : { 90 : 0 : return new QgsPolygonsToLinesAlgorithm(); 91 : : } 92 : : 93 : 0 : QList<int> QgsPolygonsToLinesAlgorithm::inputLayerTypes() const 94 : : { 95 : 0 : return QList<int>() << QgsProcessing::TypeVectorPolygon; 96 : 0 : } 97 : : 98 : 0 : QgsFeatureList QgsPolygonsToLinesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 99 : : { 100 : 0 : Q_UNUSED( context ) 101 : : 102 : 0 : QgsFeatureList result; 103 : 0 : QgsFeature feat = feature; 104 : 0 : if ( feat.hasGeometry() ) 105 : 0 : feat.setGeometry( convertToLines( feat.geometry() ) ); 106 : : 107 : 0 : result << feat; 108 : 0 : return result; 109 : 0 : } 110 : : 111 : 0 : QgsGeometry QgsPolygonsToLinesAlgorithm::convertToLines( const QgsGeometry &geometry ) const 112 : : { 113 : 0 : auto rings = extractRings( geometry.constGet() ); 114 : : 115 : 0 : QgsWkbTypes::Type resultType = outputWkbType( geometry.wkbType() ); 116 : : 117 : 0 : std::unique_ptr<QgsMultiCurve> lineGeometry; 118 : : 119 : 0 : if ( QgsWkbTypes::flatType( resultType ) == QgsWkbTypes::MultiLineString ) 120 : 0 : lineGeometry = std::make_unique<QgsMultiLineString>(); 121 : : else 122 : 0 : lineGeometry = std::make_unique<QgsMultiCurve>(); 123 : : 124 : 0 : lineGeometry->reserve( rings.size() ); 125 : 0 : for ( auto ring : std::as_const( rings ) ) 126 : 0 : lineGeometry->addGeometry( ring ); 127 : : 128 : 0 : return QgsGeometry( lineGeometry.release() ); 129 : 0 : } 130 : : 131 : 0 : QList<QgsCurve *> QgsPolygonsToLinesAlgorithm::extractRings( const QgsAbstractGeometry *geom ) const 132 : : { 133 : 0 : QList<QgsCurve *> rings; 134 : : 135 : 0 : if ( QgsGeometryCollection *collection = qgsgeometry_cast<QgsGeometryCollection *>( geom ) ) 136 : : { 137 : 0 : QgsGeometryPartIterator parts = collection->parts(); 138 : 0 : while ( parts.hasNext() ) 139 : 0 : rings.append( extractRings( parts.next() ) ); 140 : 0 : } 141 : 0 : else if ( QgsCurvePolygon *polygon = qgsgeometry_cast<QgsCurvePolygon *>( geom ) ) 142 : : { 143 : 0 : if ( auto exteriorRing = polygon->exteriorRing() ) 144 : 0 : rings.append( exteriorRing->clone() ); 145 : 0 : for ( int i = 0; i < polygon->numInteriorRings(); ++i ) 146 : : { 147 : 0 : rings.append( polygon->interiorRing( i )->clone() ); 148 : 0 : } 149 : 0 : } 150 : : 151 : 0 : return rings; 152 : 0 : } 153 : : 154 : : 155 : : 156 : : ///@endcond 157 : : 158 : :