Packages

t

geotrellis.raster.summary

SinglebandTileSummaryMethods

trait SinglebandTileSummaryMethods extends MethodExtensions[Tile]

Trait containing Tile extension methods for summaries.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SinglebandTileSummaryMethods
  2. MethodExtensions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def self: Tile
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def classBreaks(numBreaks: Int): Array[Int]

    Generate quantile class breaks for a given raster.

  2. def classBreaksDouble(numBreaks: Int): Array[Double]

    Generate quantile class breaks for a given raster.

  3. 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.

    Note

    Tiles with a double type (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) will have their values rounded to integers when making the Histogram.

  4. def histogramDouble(numBuckets: Int): Histogram[Double]

    Create a histogram from double values in a raster.

  5. def histogramDouble(): Histogram[Double]

    Create a histogram from double values in a raster.

  6. 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

    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.

  7. 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.

  8. 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.