QGIS API Documentation  master-6227475
QgsRasterBandStats Class Reference

The RasterBandStats struct is a container for statistics about a single raster band. More...

#include <qgsrasterbandstats.h>

+ Collaboration diagram for QgsRasterBandStats:

List of all members.

Public Types

enum  Stats {
  None = 0, Min = 1, Max = 1 << 1, Range = 1 << 2,
  Sum = 1 << 3, Mean = 1 << 4, StdDev = 1 << 5, SumOfSquares = 1 << 6,
  All = Min | Max | Range | Sum | Mean | StdDev | SumOfSquares
}

Public Member Functions

 QgsRasterBandStats ()
bool contains (const QgsRasterBandStats &s) const

Public Attributes

int bandNumber
 The name of the band that these stats belong to.
size_t elementCount
 The number of not no data cells in the band.
QgsRectangle extent
 Extent used to calc statistics.
int height
 Number of rows used to calc statistics.
double maximumValue
 The maximum cell value in the raster band.
double mean
 The mean cell value for the band.
double minimumValue
 The minimum cell value in the raster band.
double range
 The range is the distance between min & max.
int statsGathered
 Collected statistics.
double stdDev
 The standard deviation of the cell values.
double sum
 The sum of all cells in the band.
double sumOfSquares
 The sum of the squares.
int width
 Number of columns used to calc statistics.

Detailed Description

The RasterBandStats struct is a container for statistics about a single raster band.

Definition at line 33 of file qgsrasterbandstats.h.


Member Enumeration Documentation

Enumerator:
None 
Min 
Max 
Range 
Sum 
Mean 
StdDev 
SumOfSquares 
All 

Definition at line 36 of file qgsrasterbandstats.h.


Constructor & Destructor Documentation

Definition at line 49 of file qgsrasterbandstats.h.

References MathUtils::max(), and MathUtils::min().


Member Function Documentation

bool QgsRasterBandStats::contains ( const QgsRasterBandStats s) const [inline]

Compares region, size etc. not collected statistics

Definition at line 65 of file qgsrasterbandstats.h.

References bandNumber, extent, height, statsGathered, and width.

Referenced by QgsRasterInterface::bandStatistics(), and QgsRasterInterface::hasStatistics().


Member Data Documentation

The name of the band that these stats belong to.

The gdal band number (starts at 1)

Definition at line 78 of file qgsrasterbandstats.h.

Referenced by contains(), and QgsRasterInterface::initStatistics().

The number of not no data cells in the band.

Definition at line 82 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), and QgsRasterLayer::metadata().

Number of rows used to calc statistics.

Definition at line 114 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), contains(), and QgsRasterInterface::initStatistics().

The range is the distance between min & max.

Definition at line 96 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), and QgsRasterLayer::metadata().

The sum of all cells in the band.

NO_DATA values are excluded.

Definition at line 105 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), and QgsRasterLayer::metadata().

The sum of the squares.

Used to calculate standard deviation.

Definition at line 108 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), and QgsRasterLayer::metadata().

Number of columns used to calc statistics.

Definition at line 111 of file qgsrasterbandstats.h.

Referenced by QgsRasterInterface::bandStatistics(), contains(), and QgsRasterInterface::initStatistics().


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines