LCOV - code coverage report
Current view: top level - analysis/processing - qgsalgorithmminimumenclosingcircle.cpp (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 63 0.0 %
Date: 2021-04-10 08:29:14 Functions: 0 0 -
Branches: 0 0 -

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

Generated by: LCOV version 1.14