implicit class withSinglebandSummaryMethods extends SinglebandTileSummaryMethods
- Alphabetic
- By Inheritance
- withSinglebandSummaryMethods
- SinglebandTileSummaryMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
classBreaks(numBreaks: Int): Array[Int]
Generate quantile class breaks for a given raster.
Generate quantile class breaks for a given raster.
- Definition Classes
- SinglebandTileSummaryMethods
-
def
classBreaksDouble(numBreaks: Int): Array[Double]
Generate quantile class breaks for a given raster.
Generate quantile class breaks for a given raster.
- Definition Classes
- SinglebandTileSummaryMethods
-
def
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.
- Definition Classes
- SinglebandTileSummaryMethods
- Note
Tiles with a double type (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) will have their values rounded to integers when making the Histogram.
-
def
histogramDouble(numBuckets: Int): Histogram[Double]
Create a histogram from double values in a raster.
Create a histogram from double values in a raster.
- Definition Classes
- SinglebandTileSummaryMethods
-
def
histogramDouble(): Histogram[Double]
Create a histogram from double values in a raster.
Create a histogram from double values in a raster.
- Definition Classes
- SinglebandTileSummaryMethods
-
val
self: Tile
- Definition Classes
- withSinglebandSummaryMethods → MethodExtensions
-
def
standardDeviations(factor: Double = 1.0): Tile
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
Tile of IntConstantNoDataCellType data
- Definition Classes
- SinglebandTileSummaryMethods
- Note
Currently only supports working with integer types. If you pass in a Tile with double type data (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) the values will be rounded to Ints.
-
def
statistics: 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.
- Definition Classes
- SinglebandTileSummaryMethods
-
def
statisticsDouble: 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.
- Definition Classes
- SinglebandTileSummaryMethods