LCOV - code coverage report
Current view: top level - analysis/processing - qgsalgorithmvectorize.h (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 14 0.0 %
Date: 2021-03-26 12:19:53 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :                          qgsalgorithmvectorize.h
       3                 :            :                          ---------------------
       4                 :            :     begin                : June, 2018
       5                 :            :     copyright            : (C) 2018 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                 :            : #ifndef QGSALGORITHMVECTORIZE_H
      19                 :            : #define QGSALGORITHMVECTORIZE_H
      20                 :            : 
      21                 :            : #define SIP_NO_FILE
      22                 :            : 
      23                 :            : #include "qgis_sip.h"
      24                 :            : #include "qgsprocessingalgorithm.h"
      25                 :            : #include "qgsreclassifyutils.h"
      26                 :            : 
      27                 :            : ///@cond PRIVATE
      28                 :            : 
      29                 :            : /**
      30                 :            :  * Base class for vectorize algorithms.
      31                 :            :  */
      32                 :          0 : class QgsVectorizeAlgorithmBase : public QgsProcessingAlgorithm
      33                 :            : {
      34                 :            :   public:
      35                 :            : 
      36                 :            :     QString group() const final;
      37                 :            :     QString groupId() const final;
      38                 :            :     void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) final;
      39                 :            : 
      40                 :            :   protected:
      41                 :            : 
      42                 :            :     bool prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) final;
      43                 :            : 
      44                 :            :     QVariantMap processAlgorithm( const QVariantMap &parameters,
      45                 :            :                                   QgsProcessingContext &context, QgsProcessingFeedback *feedback ) final;
      46                 :            : 
      47                 :            :     std::unique_ptr< QgsRasterInterface > mInterface;
      48                 :            : 
      49                 :          0 :     Qgis::DataType mDataType = Qgis::Float32;
      50                 :          0 :     double mNoDataValue = -9999;
      51                 :          0 :     int mBand = 1;
      52                 :            :     QgsRectangle mExtent;
      53                 :            :     QgsCoordinateReferenceSystem mCrs;
      54                 :          0 :     double mRasterUnitsPerPixelX = 0;
      55                 :          0 :     double mRasterUnitsPerPixelY = 0;
      56                 :          0 :     int mNbCellsXProvider = 0;
      57                 :          0 :     int mNbCellsYProvider = 0;
      58                 :          0 :     QgsReclassifyUtils::RasterClass::BoundsType mBoundsType = QgsReclassifyUtils::RasterClass::IncludeMax;
      59                 :          0 :     bool mUseNoDataForMissingValues = false;
      60                 :            : 
      61                 :            :   private:
      62                 :            : 
      63                 :            :     virtual QString outputName() const = 0;
      64                 :            :     virtual QgsProcessing::SourceType outputType() const = 0;
      65                 :            :     virtual QgsWkbTypes::Type sinkType() const = 0;
      66                 :            :     virtual QgsGeometry createGeometryForPixel( double centerX, double centerY, double pixelWidthX, double pixelWidthY ) const = 0;
      67                 :            : };
      68                 :            : 
      69                 :            : /**
      70                 :            :  * Native raster pixels to polygons algorithm.
      71                 :            :  */
      72                 :          0 : class QgsRasterPixelsToPolygonsAlgorithm : public QgsVectorizeAlgorithmBase
      73                 :            : {
      74                 :            :   public:
      75                 :            : 
      76                 :          0 :     QgsRasterPixelsToPolygonsAlgorithm() = default;
      77                 :            :     QString name() const override;
      78                 :            :     QString displayName() const override;
      79                 :            :     QStringList tags() const override;
      80                 :            :     QString shortHelpString() const override;
      81                 :            :     QString shortDescription() const override;
      82                 :            :     QgsRasterPixelsToPolygonsAlgorithm *createInstance() const override SIP_FACTORY;
      83                 :            : 
      84                 :            :   private:
      85                 :            : 
      86                 :            :     QString outputName() const override;
      87                 :            :     QgsProcessing::SourceType outputType() const override;
      88                 :            :     QgsWkbTypes::Type sinkType() const override;
      89                 :            :     QgsGeometry createGeometryForPixel( double centerX, double centerY, double pixelWidthX, double pixelWidthY ) const override;
      90                 :            : 
      91                 :            : };
      92                 :            : 
      93                 :            : /**
      94                 :            :  * Native raster pixels to points algorithm.
      95                 :            :  */
      96                 :          0 : class QgsRasterPixelsToPointsAlgorithm : public QgsVectorizeAlgorithmBase
      97                 :            : {
      98                 :            :   public:
      99                 :            : 
     100                 :          0 :     QgsRasterPixelsToPointsAlgorithm() = default;
     101                 :            :     QString name() const override;
     102                 :            :     QString displayName() const override;
     103                 :            :     QStringList tags() const override;
     104                 :            :     QString shortHelpString() const override;
     105                 :            :     QString shortDescription() const override;
     106                 :            :     QgsRasterPixelsToPointsAlgorithm *createInstance() const override SIP_FACTORY;
     107                 :            : 
     108                 :            :   private:
     109                 :            : 
     110                 :            :     QString outputName() const override;
     111                 :            :     QgsProcessing::SourceType outputType() const override;
     112                 :            :     QgsWkbTypes::Type sinkType() const override;
     113                 :            :     QgsGeometry createGeometryForPixel( double centerX, double centerY, double pixelWidthX, double pixelWidthY ) const override;
     114                 :            : 
     115                 :            : };
     116                 :            : 
     117                 :            : ///@endcond PRIVATE
     118                 :            : 
     119                 :            : #endif // QGSALGORITHMVECTORIZE_H
     120                 :            : 
     121                 :            : 

Generated by: LCOV version 1.14