QGIS/python/core/raster/qgsrasternuller.sip
2013-04-29 13:28:05 +02:00

31 lines
707 B
Plaintext

class QgsRasterNuller : QgsRasterInterface
{
%TypeHeaderCode
#include <qgsrasternuller.h>
%End
public:
QgsRasterNuller( QgsRasterInterface* input = 0 );
~QgsRasterNuller();
struct NoData
{
double min;
double max;
};
QgsRasterInterface * clone() const /Factory/;
int bandCount() const;
QGis::DataType dataType( int bandNo ) const;
QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height ) / Factory /;
void setNoData( int bandNo, QgsRasterRangeList noData );
QgsRasterRangeList noData( int bandNo ) const;
/** \brief Set output no data value. */
void setOutputNoDataValue( int bandNo, double noData );
};