geotrellis.raster.op

global

package global

Visibility
  1. Public
  2. All

Type Members

  1. case class AsArray(r: Op[Raster]) extends Op1[Raster, Array[Int]] with Product with Serializable

    Converts a raster to an integer array.

  2. case class AsArrayDouble(r: Op[Raster]) extends Op1[Raster, Array[Double]] with Product with Serializable

    Converts a raster to a double array.

  3. case class AutomaticRescale(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.

  4. sealed trait Connectivity extends AnyRef

  5. case class Convolve(r: Op[Raster], k: Op[Kernel]) extends Op2[Raster, Kernel, Raster] with Product with Serializable

    Computes the convolution of two rasters.

  6. final case class CostDistance(costOp: Op[Raster], pointsOp: Op[Seq[(Int, Int)]]) extends Op[Raster] with Product with Serializable

    Generate a Cost-Distance raster based on a set of starting points and a cost raster

  7. trait GlobalOpMethods[+Repr <: RasterSource] extends AnyRef

  8. class Polygonizer extends AnyRef

  9. case class PrecomputedRescale(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.

  10. case class RegionGroup(r: Op[Raster], options: RegionGroupOptions = RegionGroupOptions.default) extends Op1[Raster, RegionGroupResult] with Product with Serializable

  11. case class RegionGroupOptions(connectivity: Connectivity = FourNeighbors, ignoreNoData: Boolean = true) extends Product with Serializable

  12. case class RegionGroupResult(raster: Raster, regionMap: Map[Int, Int]) extends Product with Serializable

  13. class RegionPartition extends AnyRef

  14. case class ToVector(r: Op[Raster], regionConnectivity: Connectivity = ...) extends Operation[List[Polygon[Int]]] with Product with Serializable

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

    Flip the data for a raster along the X-axis.

Value Members

  1. object EightNeighbors extends Connectivity with Product with Serializable

  2. object FourNeighbors extends Connectivity with Product with Serializable

  3. object Normalize

    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.

  4. object RegionGroupOptions extends Serializable

  5. object Rescale extends Serializable

    Rescale a raster when we want to automatically detect the min/max values, and when we provide them explicitly.

Ungrouped