geotrellis.raster.op

focal

package focal

Visibility
  1. Public
  2. All

Type Members

  1. case class AutomaticNormalize(r: Op[Raster], g: Op[(Int, Int)]) extends Op2[Raster, (Int, Int), Raster] with Product with Serializable

    Normalize the values in the given raster so that all values are within the specified minimum and maximum value range.

  2. case class Hillshade(r: Op[Raster], azimuth: Op[Double], altitude: Op[Double]) extends Op3[Raster, Double, Double, Raster] with Product with Serializable

    Hillshade creates a raster that, visually, adds a three dimensional appearance to an elevation raster.

  3. class Kernel extends AnyRef

    Used for Kernel Density calculation

  4. case class KernelDensity(outputRasterExtent: Op[RasterExtent], kernel: Op[Kernel], points: Op[Array[Point]]) extends Op3[RasterExtent, Kernel, Array[Point], Raster] with Product with Serializable

    Compute the kernel density of a set of points onto a raster

  5. case class LocalMoransI(r: Op[Raster]) extends Op1[Raster, Raster] with Product with Serializable

  6. case class LocalQueensMoransI(r: Op[Raster]) extends Op1[Raster, Raster] with Product with Serializable

  7. case class MoransI(r: Op[Raster]) extends Op1[Raster, Double] with Product with Serializable

  8. case class PrecomputedNormalize(r: Op[Raster], c: Op[(Int, Int)], g: Op[(Int, Int)]) extends Op3[Raster, (Int, Int), (Int, Int), Raster] with Product with Serializable

    Normalize the values in the given raster.

  9. case class QueensMoransI(r: Op[Raster]) extends Op1[Raster, Double] with Product with Serializable

Value Members

  1. object HillshadeHelper extends AnyRef

  2. object Kernel extends AnyRef

    Object used for generating kernels

  3. object KernelDensityHelper extends AnyRef

  4. object MoransIndex extends AnyRef

  5. object Normalize extends AnyRef

    We'd like to use the normalize name both when we want to automatically detect the min/max values, and when we provide them explicitly.

  6. object Rescale extends AnyRef