LCOV - code coverage report
Current view: top level - core/classification - qgsclassificationequalinterval.cpp (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 7 48 14.6 %
Date: 2021-03-26 12:19:53 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :     qgsclassificationequalinterval.h
       3                 :            :     ---------------------
       4                 :            :     begin                : September 2019
       5                 :            :     copyright            : (C) 2019 by Denis Rouzaud
       6                 :            :     email                : denis@opengis.ch
       7                 :            :  ***************************************************************************
       8                 :            :  *                                                                         *
       9                 :            :  *   This program is free software; you can redistribute it and/or modify  *
      10                 :            :  *   it under the terms of the GNU General Public License as published by  *
      11                 :            :  *   the Free Software Foundation; either version 2 of the License, or     *
      12                 :            :  *   (at your option) any later version.                                   *
      13                 :            :  *                                                                         *
      14                 :            :  ***************************************************************************/
      15                 :            : 
      16                 :            : #include <QObject>
      17                 :            : 
      18                 :            : #include "qgsclassificationequalinterval.h"
      19                 :            : #include "qgsapplication.h"
      20                 :            : 
      21                 :         10 : const QString QgsClassificationEqualInterval::METHOD_ID = QStringLiteral( "EqualInterval" );
      22                 :            : 
      23                 :          5 : QgsClassificationEqualInterval::QgsClassificationEqualInterval()
      24                 :          5 :   : QgsClassificationMethod( SymmetricModeAvailable, 0 /*codeComplexity*/ )
      25                 :         10 : {
      26                 :          5 : }
      27                 :            : 
      28                 :          0 : QString QgsClassificationEqualInterval::name() const
      29                 :            : {
      30                 :          0 :   return QObject::tr( "Equal Interval" );
      31                 :            : }
      32                 :            : 
      33                 :         10 : QString QgsClassificationEqualInterval::id() const
      34                 :            : {
      35                 :         10 :   return METHOD_ID;
      36                 :            : }
      37                 :            : 
      38                 :          0 : QList<double> QgsClassificationEqualInterval::calculateBreaks( double &minimum, double &maximum,
      39                 :            :     const QList<double> &values, int nclasses )
      40                 :            : {
      41                 :          0 :   Q_UNUSED( values )
      42                 :            : 
      43                 :            :   // Equal interval algorithm
      44                 :            :   // Returns breaks based on dividing the range ('minimum' to 'maximum') into 'classes' parts.
      45                 :          0 :   QList<double> breaks;
      46                 :          0 :   if ( !symmetricModeEnabled() ) // normal mode
      47                 :            :   {
      48                 :          0 :     double step = ( maximum - minimum ) / nclasses;
      49                 :            : 
      50                 :          0 :     double value = minimum;
      51                 :          0 :     breaks.reserve( nclasses );
      52                 :          0 :     for ( int i = 0; i < nclasses; i++ )
      53                 :            :     {
      54                 :          0 :       value += step;
      55                 :          0 :       breaks << value;
      56                 :          0 :     }
      57                 :            :     // floating point arithmetic is not precise:
      58                 :            :     // set the last break to be exactly maximum so we do not miss it
      59                 :          0 :     breaks[nclasses - 1] = maximum;
      60                 :          0 :   }
      61                 :            :   else // symmetric mode
      62                 :            :   {
      63                 :          0 :     double distBelowSymmetricValue = std::abs( minimum - symmetryPoint() );
      64                 :          0 :     double distAboveSymmetricValue = std::abs( maximum - symmetryPoint() ) ;
      65                 :            : 
      66                 :          0 :     if ( symmetryAstride() )
      67                 :            :     {
      68                 :          0 :       if ( nclasses % 2 == 0 ) // we want odd number of classes
      69                 :          0 :         ++nclasses;
      70                 :          0 :     }
      71                 :            :     else
      72                 :            :     {
      73                 :          0 :       if ( nclasses % 2 == 1 ) // we want even number of classes
      74                 :          0 :         ++nclasses;
      75                 :            :     }
      76                 :          0 :     double step = 2 * std::min( distBelowSymmetricValue, distAboveSymmetricValue ) / nclasses;
      77                 :            : 
      78                 :          0 :     breaks.reserve( nclasses );
      79                 :          0 :     double value = ( distBelowSymmetricValue < distAboveSymmetricValue ) ?  minimum : maximum - nclasses * step;
      80                 :            : 
      81                 :          0 :     for ( int i = 0; i < nclasses; i++ )
      82                 :            :     {
      83                 :          0 :       value += step;
      84                 :          0 :       breaks << value;
      85                 :          0 :     }
      86                 :          0 :     breaks[nclasses - 1] = maximum;
      87                 :            :   }
      88                 :            : 
      89                 :          0 :   return breaks;
      90                 :          0 : }
      91                 :            : 
      92                 :            : 
      93                 :          0 : QgsClassificationMethod *QgsClassificationEqualInterval::clone() const
      94                 :            : {
      95                 :          0 :   QgsClassificationEqualInterval *c = new QgsClassificationEqualInterval();
      96                 :          0 :   copyBase( c );
      97                 :          0 :   return c;
      98                 :          0 : }
      99                 :            : 
     100                 :          0 : QIcon QgsClassificationEqualInterval::icon() const
     101                 :            : {
     102                 :          0 :   return QgsApplication::getThemeIcon( "classification_methods/mClassificationEqualInterval.svg" );
     103                 :          0 : }
     104                 :            : 

Generated by: LCOV version 1.14