Packages

c

geotrellis.raster.summary.Implicits

withSinglebandSummaryMethods

implicit class withSinglebandSummaryMethods extends SinglebandTileSummaryMethods

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. withSinglebandSummaryMethods
  2. SinglebandTileSummaryMethods
  3. MethodExtensions
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new withSinglebandSummaryMethods(self: Tile)

Value Members

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

    Definition Classes
    SinglebandTileSummaryMethods
    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.

    Create a histogram from double values in a raster.

    Definition Classes
    SinglebandTileSummaryMethods
  5. 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
  6. val self: Tile
  7. 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.

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