QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsrasternuller.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrasternuller.h
3  -------------------
4  begin : August 2012
5  copyright : (C) 2012 by Radim Blazek
6  email : radim dot blazek 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 QGSRASTERNULLER_H
19 #define QGSRASTERNULLER_H
20 
21 #include "qgis_core.h"
22 #include "qgis_sip.h"
23 #include "qgsrasterrange.h"
24 #include "qgsrasterinterface.h"
25 
26 #include <QList>
27 
32 class CORE_EXPORT QgsRasterNuller : public QgsRasterInterface
33 {
34  public:
35  QgsRasterNuller( QgsRasterInterface *input = nullptr );
36 
37  struct NoData
38  {
39  double min;
40  double max;
41  };
42 
43  QgsRasterNuller *clone() const override SIP_FACTORY;
44 
45  int bandCount() const override;
46 
47  Qgis::DataType dataType( int bandNo ) const override;
48 
49  QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height, QgsRasterBlockFeedback *feedback = nullptr ) override SIP_FACTORY;
50 
51  void setNoData( int bandNo, const QgsRasterRangeList &noData );
52 
53  QgsRasterRangeList noData( int bandNo ) const { return mNoData.value( bandNo - 1 ); }
54 
56  void setOutputNoDataValue( int bandNo, double noData );
57 
58  private:
59  // no data indext from 0
60  QVector< QgsRasterRangeList > mNoData;
61  // no data to be set in output, indexed form 0
62  QVector<double> mOutputNoData;
63  QVector<bool> mHasOutputNoData;
64 };
65 
66 #endif // QGSRASTERNULLER_H
A rectangle specified with double values.
Definition: qgsrectangle.h:41
Raster pipe that deals with null values.
The Qgis class provides global constants for use throughout the application.
Definition: qgis.h:45
Raster data container.
#define SIP_FACTORY
Definition: qgis_sip.h:76
Base class for processing filters like renderers, reprojector, resampler etc.
QList< QgsRasterRange > QgsRasterRangeList
double value(int row, int column) const
Read a single value if type of block is numeric.
Feedback object tailored for raster block reading.