t

geotrellis.layer.mapalgebra.local

DivideTileCollectionMethods

trait DivideTileCollectionMethods[K] extends MethodExtensions[Seq[(K, Tile)]]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DivideTileCollectionMethods
  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: Seq[(K, Tile)]
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def /(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
  2. def /(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Divide the values of each cell in each raster.

  3. def /(d: Double): Seq[(K, Tile)]

    Divide each value of a raster by a double constant value.

  4. def /(i: Int): Seq[(K, Tile)]

    Divide each value of the raster by a constant value.

  5. def /:(d: Double): Seq[(K, Tile)]

    Divide a double constant value by each cell value.

  6. def /:(i: Int): Seq[(K, Tile)]

    Divide a constant value by each cell value.

  7. def localDivide(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
  8. def localDivide(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Divide the values of each cell in each raster.

  9. def localDivide(d: Double): Seq[(K, Tile)]

    Divide each value of a raster by a double constant value.

  10. def localDivide(i: Int): Seq[(K, Tile)]

    Divide each value of the raster by a constant value.

  11. def localDivideValue(d: Double): Seq[(K, Tile)]

    Divide a double constant value by each cell value.

  12. def localDivideValue(i: Int): Seq[(K, Tile)]

    Divide a constant value by each cell value.