Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmconvexhull.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 "qgsalgorithmconvexhull.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsConvexHullAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "convexhull" ); 25 : : } 26 : : 27 : 0 : QString QgsConvexHullAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Convex hull" ); 30 : : } 31 : : 32 : 0 : QStringList QgsConvexHullAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "convex,hull,bounds,bounding" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsConvexHullAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsConvexHullAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsConvexHullAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Convex hulls" ); 50 : : } 51 : : 52 : 0 : QString QgsConvexHullAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm calculates the convex hull for each feature in an input layer." ) + 55 : 0 : QStringLiteral( "\n\n" ) + 56 : 0 : QObject::tr( "See the 'Minimum bounding geometry' algorithm for a convex hull calculation which covers the whole layer or grouped subsets of features." ); 57 : 0 : } 58 : : 59 : 0 : QgsConvexHullAlgorithm *QgsConvexHullAlgorithm::createInstance() const 60 : : { 61 : 0 : return new QgsConvexHullAlgorithm(); 62 : : } 63 : : 64 : 0 : QgsFields QgsConvexHullAlgorithm::outputFields( const QgsFields &inputFields ) const 65 : : { 66 : 0 : QgsFields fields = inputFields; 67 : 0 : fields.append( QgsField( QStringLiteral( "area" ), QVariant::Double, QString(), 20, 6 ) ); 68 : 0 : fields.append( QgsField( QStringLiteral( "perimeter" ), QVariant::Double, QString(), 20, 6 ) ); 69 : 0 : return fields; 70 : 0 : } 71 : : 72 : 0 : QgsFeatureList QgsConvexHullAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback ) 73 : : { 74 : 0 : QgsFeature f = feature; 75 : 0 : if ( f.hasGeometry() ) 76 : : { 77 : 0 : QgsGeometry outputGeometry; 78 : 0 : if ( QgsWkbTypes::flatType( f.geometry().wkbType() ) == QgsWkbTypes::Point ) 79 : : { 80 : 0 : feedback->reportError( QObject::tr( "Cannot calculate convex hull for a single Point feature (try 'Minimum bounding geometry' algorithm instead)." ) ); 81 : 0 : f.clearGeometry(); 82 : 0 : } 83 : : else 84 : : { 85 : 0 : outputGeometry = f.geometry().convexHull(); 86 : 0 : if ( outputGeometry.isNull() ) 87 : 0 : feedback->reportError( outputGeometry.lastError() ); 88 : 0 : f.setGeometry( outputGeometry ); 89 : : } 90 : 0 : if ( !outputGeometry.isNull() ) 91 : : { 92 : 0 : QgsAttributes attrs = f.attributes(); 93 : 0 : attrs << outputGeometry.constGet()->area() 94 : 0 : << outputGeometry.constGet()->perimeter(); 95 : 0 : f.setAttributes( attrs ); 96 : 0 : } 97 : : else 98 : : { 99 : 0 : QgsAttributes attrs = f.attributes(); 100 : 0 : attrs << QVariant() 101 : 0 : << QVariant(); 102 : 0 : f.setAttributes( attrs ); 103 : 0 : } 104 : 0 : } 105 : 0 : return QgsFeatureList() << f; 106 : 0 : } 107 : : 108 : : ///@endcond 109 : :