Package

geotrellis.raster.mapalgebra

zonal

Permalink

package zonal

Visibility
  1. Public
  2. All

Type Members

  1. trait ZonalHistogram[T <: AnyVal] extends AnyRef

    Permalink

    Given a raster, return a histogram summary of the cells within each zone.

    Given a raster, return a histogram summary of the cells within each zone.

    Note

    ZonalHistogram does not currently support Double raster data. If you use a Raster with a Double CellType (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) the data values will be rounded to integers.

  2. trait ZonalMethods extends MethodExtensions[Tile]

    Permalink

Value Members

  1. object DoubleZonalHistogram extends ZonalHistogram[Double]

    Permalink
  2. object IntZonalHistogram extends ZonalHistogram[Int]

    Permalink
  3. object ZonalPercentage

    Permalink

    Given a raster and a raster representing it's zones, sets all pixels within each zone to the percentage of those pixels having values equal to that of the given pixel.

    Given a raster and a raster representing it's zones, sets all pixels within each zone to the percentage of those pixels having values equal to that of the given pixel.

    Percentages are integer values from 0 - 100.

    Note

    ZonalPercentage does not currently support Double raster data. If you use a Raster with a Double CellType (FloatConstantNoDataCellType, DoubleConstantNoDataCellType) the data values will be rounded to integers.

Ungrouped