trait MultibandTileSummaryMethods extends MethodExtensions[MultibandTile]
- Alphabetic
- By Inheritance
- MultibandTileSummaryMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
self: MultibandTile
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
classBreaks(numBreaks: Int): Array[Array[Int]]
Generate quantile class breaks for a given raster.
-
def
classBreaksDouble(numBreaks: Int): Array[Array[Double]]
Generate quantile class breaks for a given raster.
-
def
histogram: Array[histogram.Histogram[Int]]
Contains several different operations for building a histograms of a raster.
Contains several different operations for building a histograms of a raster.
- Note
Tiles with a double type (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) will have their values rounded to integers when making the Histogram.
-
def
histogramDouble(numBuckets: Int): Array[histogram.Histogram[Double]]
Create a histogram from double values in a raster.
-
def
histogramDouble(): Array[histogram.Histogram[Double]]
Create a histogram from double values in a raster.
-
def
standardDeviations(factor: Double = 1.0): MultibandTile
Calculate a raster in which each value is set to the standard deviation of that cell's value.
Calculate a raster in which each value is set to the standard deviation of that cell's value.
- returns
MultibandTile of IntConstantNoDataCellType data
- Note
Currently only supports working with integer types. If you pass in a MultibandTile with double type data (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) the values will be rounded to Ints.
-
def
statistics: Array[Option[Statistics[Int]]]
Determine statistical data for the given histogram.
Determine statistical data for the given histogram.
This includes mean, median, mode, stddev, and min and max values.
-
def
statisticsDouble: Array[Option[Statistics[Double]]]
Determine statistical data for the given histogram.
Determine statistical data for the given histogram.
This includes mean, median, mode, stddev, and min and max values.