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