Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmforcerhr.cpp 3 : : --------------------- 4 : : begin : November 2018 5 : : copyright : (C) 2018 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 "qgsalgorithmforcerhr.h" 19 : : #include "qgsvectorlayer.h" 20 : : #include "qgsgeometrycollection.h" 21 : : #include "qgscurvepolygon.h" 22 : : 23 : : ///@cond PRIVATE 24 : : 25 : 0 : QString QgsForceRHRAlgorithm::name() const 26 : : { 27 : 0 : return QStringLiteral( "forcerhr" ); 28 : : } 29 : : 30 : 0 : QString QgsForceRHRAlgorithm::displayName() const 31 : : { 32 : 0 : return QObject::tr( "Force right-hand-rule" ); 33 : : } 34 : : 35 : 0 : QStringList QgsForceRHRAlgorithm::tags() const 36 : : { 37 : 0 : return QObject::tr( "clockwise,counter,orientation,ring,repair,invalid,geometry,make,valid" ).split( ',' ); 38 : 0 : } 39 : : 40 : 0 : QString QgsForceRHRAlgorithm::group() const 41 : : { 42 : 0 : return QObject::tr( "Vector geometry" ); 43 : : } 44 : : 45 : 0 : QString QgsForceRHRAlgorithm::groupId() const 46 : : { 47 : 0 : return QStringLiteral( "vectorgeometry" ); 48 : : } 49 : : 50 : 0 : QgsProcessingFeatureSource::Flag QgsForceRHRAlgorithm::sourceFlags() const 51 : : { 52 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 53 : : } 54 : : 55 : 0 : QString QgsForceRHRAlgorithm::outputName() const 56 : : { 57 : 0 : return QObject::tr( "Reoriented" ); 58 : : } 59 : : 60 : 0 : QString QgsForceRHRAlgorithm::shortHelpString() const 61 : : { 62 : 0 : return QObject::tr( "This algorithm forces polygon geometries to respect the Right-Hand-Rule, in which the area that is bounded by a polygon " 63 : : "is to the right of the boundary. In particular, the exterior ring is oriented in a clockwise direction and the interior " 64 : : "rings in a counter-clockwise direction." ); 65 : : } 66 : : 67 : 0 : QString QgsForceRHRAlgorithm::shortDescription() const 68 : : { 69 : 0 : return QObject::tr( "Forces polygon geometries to respect the Right-Hand-Rule." ); 70 : : } 71 : : 72 : 0 : QList<int> QgsForceRHRAlgorithm::inputLayerTypes() const 73 : : { 74 : 0 : return QList<int>() << QgsProcessing::TypeVectorPolygon; 75 : 0 : } 76 : : 77 : 0 : QgsForceRHRAlgorithm *QgsForceRHRAlgorithm::createInstance() const 78 : : { 79 : 0 : return new QgsForceRHRAlgorithm(); 80 : : } 81 : : 82 : 0 : QgsFeatureList QgsForceRHRAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 83 : : { 84 : 0 : if ( !feature.hasGeometry() ) 85 : 0 : return QgsFeatureList() << feature; 86 : : 87 : 0 : QgsFeature outputFeature = feature; 88 : 0 : outputFeature.setGeometry( feature.geometry().forceRHR() ); 89 : : 90 : 0 : return QgsFeatureList() << outputFeature; 91 : 0 : } 92 : : 93 : : ///@endcond