Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmorientedminimumboundingbox.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 "qgsalgorithmorientedminimumboundingbox.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "orientedminimumboundingbox" ); 26 : : } 27 : : 28 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Oriented minimum bounding box" ); 31 : : } 32 : : 33 : 0 : QStringList QgsOrientedMinimumBoundingBoxAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "bounding,boxes,envelope,rectangle,extent,oriented,angle" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Bounding boxes" ); 51 : : } 52 : : 53 : 0 : QgsWkbTypes::Type QgsOrientedMinimumBoundingBoxAlgorithm::outputWkbType( QgsWkbTypes::Type ) const 54 : : { 55 : 0 : return QgsWkbTypes::Polygon; 56 : : } 57 : : 58 : 0 : QString QgsOrientedMinimumBoundingBoxAlgorithm::shortHelpString() const 59 : : { 60 : 0 : return QObject::tr( "This algorithm calculates the minimum area rotated rectangle which covers each feature in an input layer." ) + 61 : 0 : QStringLiteral( "\n\n" ) + 62 : 0 : QObject::tr( "See the 'Minimum bounding geometry' algorithm for a oriented bounding box calculation which covers the whole layer or grouped subsets of features." ); 63 : 0 : } 64 : : 65 : 0 : QgsOrientedMinimumBoundingBoxAlgorithm *QgsOrientedMinimumBoundingBoxAlgorithm::createInstance() const 66 : : { 67 : 0 : return new QgsOrientedMinimumBoundingBoxAlgorithm(); 68 : : } 69 : : 70 : 0 : bool QgsOrientedMinimumBoundingBoxAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const 71 : : { 72 : 0 : const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l ); 73 : 0 : if ( !layer ) 74 : 0 : return false; 75 : : 76 : 0 : if ( ! QgsProcessingFeatureBasedAlgorithm::supportInPlaceEdit( layer ) ) 77 : 0 : return false; 78 : : // Polygons only 79 : 0 : return layer->wkbType() == QgsWkbTypes::Type::Polygon || layer->wkbType() == QgsWkbTypes::Type::MultiPolygon; 80 : 0 : } 81 : : 82 : 0 : QgsFields QgsOrientedMinimumBoundingBoxAlgorithm::outputFields( const QgsFields &inputFields ) const 83 : : { 84 : 0 : QgsFields fields = inputFields; 85 : 0 : fields.append( QgsField( QStringLiteral( "width" ), QVariant::Double, QString(), 20, 6 ) ); 86 : 0 : fields.append( QgsField( QStringLiteral( "height" ), QVariant::Double, QString(), 20, 6 ) ); 87 : 0 : fields.append( QgsField( QStringLiteral( "angle" ), QVariant::Double, QString(), 20, 6 ) ); 88 : 0 : fields.append( QgsField( QStringLiteral( "area" ), QVariant::Double, QString(), 20, 6 ) ); 89 : 0 : fields.append( QgsField( QStringLiteral( "perimeter" ), QVariant::Double, QString(), 20, 6 ) ); 90 : 0 : return fields; 91 : 0 : } 92 : : 93 : 0 : QgsFeatureList QgsOrientedMinimumBoundingBoxAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 94 : : { 95 : 0 : QgsFeature f = feature; 96 : 0 : if ( f.hasGeometry() ) 97 : : { 98 : 0 : double area = 0; 99 : 0 : double angle = 0; 100 : 0 : double width = 0; 101 : 0 : double height = 0; 102 : 0 : QgsGeometry outputGeometry = f.geometry().orientedMinimumBoundingBox( area, angle, width, height ); 103 : 0 : f.setGeometry( outputGeometry ); 104 : 0 : QgsAttributes attrs = f.attributes(); 105 : 0 : attrs << width 106 : 0 : << height 107 : 0 : << angle 108 : 0 : << area 109 : 0 : << 2 * width + 2 * height; 110 : 0 : f.setAttributes( attrs ); 111 : 0 : } 112 : : else 113 : : { 114 : 0 : QgsAttributes attrs = f.attributes(); 115 : 0 : attrs << QVariant() 116 : 0 : << QVariant() 117 : 0 : << QVariant() 118 : 0 : << QVariant() 119 : 0 : << QVariant(); 120 : 0 : f.setAttributes( attrs ); 121 : 0 : } 122 : 0 : return QgsFeatureList() << f; 123 : 0 : } 124 : : 125 : : ///@endcond 126 : : 127 : :