t

geotrellis.layer.mapalgebra.local

LocalTileCollectionMethods

trait LocalTileCollectionMethods[K] extends MethodExtensions[Seq[(K, Tile)]] with AddTileCollectionMethods[K] with AndTileCollectionMethods[K] with IfCellTileCollectionMethods[K] with DivideTileCollectionMethods[K] with EqualTileCollectionMethods[K] with GreaterOrEqualTileCollectionMethods[K] with GreaterTileCollectionMethods[K] with LessOrEqualTileCollectionMethods[K] with LessTileCollectionMethods[K] with LocalMapTileCollectionMethods[K] with MajorityTileCollectionMethods[K] with MaxTileCollectionMethods[K] with MinTileCollectionMethods[K] with MinorityTileCollectionMethods[K] with MultiplyTileCollectionMethods[K] with OrTileCollectionMethods[K] with PowTileCollectionMethods[K] with SubtractTileCollectionMethods[K] with UnequalTileCollectionMethods[K] with XorTileCollectionMethods[K]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LocalTileCollectionMethods
  2. XorTileCollectionMethods
  3. UnequalTileCollectionMethods
  4. SubtractTileCollectionMethods
  5. PowTileCollectionMethods
  6. OrTileCollectionMethods
  7. MultiplyTileCollectionMethods
  8. MinorityTileCollectionMethods
  9. MinTileCollectionMethods
  10. MaxTileCollectionMethods
  11. MajorityTileCollectionMethods
  12. LocalMapTileCollectionMethods
  13. LessTileCollectionMethods
  14. LessOrEqualTileCollectionMethods
  15. GreaterTileCollectionMethods
  16. GreaterOrEqualTileCollectionMethods
  17. EqualTileCollectionMethods
  18. DivideTileCollectionMethods
  19. IfCellTileCollectionMethods
  20. AndTileCollectionMethods
  21. AddTileCollectionMethods
  22. MethodExtensions
  23. Serializable
  24. Serializable
  25. AnyRef
  26. 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 !==(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the raster are not equal, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the raster are not equal, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  2. def !==(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  3. def !==(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  4. def !==:(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  5. def !==:(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  6. def &(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndTileCollectionMethods
  7. def &(rs: TileLayerCollection[K]): Seq[(K, Tile)]

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndTileCollectionMethods
  8. def &(i: Int): Seq[(K, Tile)]

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndTileCollectionMethods
  9. def &:(i: Int): Seq[(K, Tile)]

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndTileCollectionMethods
  10. def *(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyTileCollectionMethods
  11. def *(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyTileCollectionMethods
  12. def *(d: Double): Seq[(K, Tile)]

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  13. def *(i: Int): Seq[(K, Tile)]

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  14. def **(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowTileCollectionMethods
  15. def **(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowTileCollectionMethods
  16. def **(d: Double): Seq[(K, Tile)]

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

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

    Definition Classes
    PowTileCollectionMethods
  17. def **(i: Int): Seq[(K, Tile)]

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

    Definition Classes
    PowTileCollectionMethods
  18. def **:(d: Double): Seq[(K, Tile)]

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

    Definition Classes
    PowTileCollectionMethods
  19. def **:(i: Int): Seq[(K, Tile)]

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

    Definition Classes
    PowTileCollectionMethods
  20. def *:(d: Double): Seq[(K, Tile)]

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  21. def *:(i: Int): Seq[(K, Tile)]

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  22. def +(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
    Definition Classes
    AddTileCollectionMethods
  23. def +(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddTileCollectionMethods
  24. def +(d: Double): Seq[(K, Tile)]

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddTileCollectionMethods
  25. def +(i: Int): Seq[(K, Tile)]

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddTileCollectionMethods
  26. def +:(d: Double): Seq[(K, Tile)]

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddTileCollectionMethods
  27. def +:(i: Int): Seq[(K, Tile)]

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddTileCollectionMethods
  28. def -(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractTileCollectionMethods
  29. def -(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractTileCollectionMethods
  30. def -(d: Double): Seq[(K, Tile)]

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

    Definition Classes
    SubtractTileCollectionMethods
  31. def -(i: Int): Seq[(K, Tile)]

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

    Definition Classes
    SubtractTileCollectionMethods
  32. def -:(d: Double): Seq[(K, Tile)]

    Subtract each value of a cell from a double constant value.

    Subtract each value of a cell from a double constant value.

    Definition Classes
    SubtractTileCollectionMethods
  33. def -:(i: Int): Seq[(K, Tile)]

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

    Definition Classes
    SubtractTileCollectionMethods
  34. def /(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
    Definition Classes
    DivideTileCollectionMethods
  35. def /(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideTileCollectionMethods
  36. def /(d: Double): Seq[(K, Tile)]

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

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

    Definition Classes
    DivideTileCollectionMethods
  37. def /(i: Int): Seq[(K, Tile)]

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

    Definition Classes
    DivideTileCollectionMethods
  38. def /:(d: Double): Seq[(K, Tile)]

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

    Definition Classes
    DivideTileCollectionMethods
  39. def /:(i: Int): Seq[(K, Tile)]

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

    Definition Classes
    DivideTileCollectionMethods
  40. def <(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.

    Definition Classes
    LessTileCollectionMethods
  41. def <(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Definition Classes
    LessTileCollectionMethods
  42. def <(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Definition Classes
    LessTileCollectionMethods
  43. def <<:(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Definition Classes
    LessTileCollectionMethods
    Note

    Syntax has double '<' due to '<:' operator being reserved in Scala.

  44. def <<:(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Definition Classes
    LessTileCollectionMethods
    Note

    Syntax has double '<' due to '<:' operator being reserved in Scala.

  45. def <=(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than or equal to the next raster, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than or equal to the next raster, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  46. def <=(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  47. def <=(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  48. def <=:(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  49. def <=:(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  50. def >(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the raster are greater than the next raster, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the raster are greater than the next raster, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  51. def >(d: Double): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  52. def >(i: Int): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  53. def >=(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than or equal to the next raster, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than or equal to the next raster, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  54. def >=(d: Double): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  55. def >=(i: Int): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  56. def >=:(d: Double): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  57. def >=:(i: Int): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  58. def >>:(d: Double): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Definition Classes
    GreaterTileCollectionMethods
    Note

    Syntax has double '>' due to '>:' operator being reserved in Scala.

  59. def >>:(i: Int): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Definition Classes
    GreaterTileCollectionMethods
    Note

    Syntax has double '>' due to '>:' operator being reserved in Scala.

  60. def ^(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorTileCollectionMethods
  61. def ^(r: TileLayerCollection[K]): Seq[(K, Tile)]

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorTileCollectionMethods
  62. def ^(i: Int): Seq[(K, Tile)]

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorTileCollectionMethods
  63. def ^:(i: Int): Seq[(K, Tile)]

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorTileCollectionMethods
  64. def localAbs(): Seq[(K, Tile)]

    Takes the Absolute value of each raster cell value.

  65. def localAcos(): Seq[(K, Tile)]

    Takes the arc cos of each raster cell value.

    Takes the arc cos of each raster cell value.

    Note

    Always return a double valued raster.

  66. def localAdd(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
    Definition Classes
    AddTileCollectionMethods
  67. def localAdd(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddTileCollectionMethods
  68. def localAdd(d: Double): Seq[(K, Tile)]

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddTileCollectionMethods
  69. def localAdd(i: Int): Seq[(K, Tile)]

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddTileCollectionMethods
  70. def localAnd(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndTileCollectionMethods
  71. def localAnd(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndTileCollectionMethods
  72. def localAnd(i: Int): Seq[(K, Tile)]

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndTileCollectionMethods
  73. def localAsin(): Seq[(K, Tile)]

    Takes the arc sine of each raster cell value.

    Takes the arc sine of each raster cell value.

    Note

    Always return a double valued raster.

  74. def localAtan(): Seq[(K, Tile)]

    Takes the arc tan of each raster cell value.

    Takes the arc tan of each raster cell value.

    Note

    Always return a double valued raster.

  75. def localAtan2(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Takes the Arc Tangent2.

    Takes the Arc Tangent2.

    This raster holds the y - values, and the parameter holds the x values. The arctan is calculated from y / x.

    Note

    A double raster is always returned.

  76. def localCeil(): Seq[(K, Tile)]

    Takes the Ceiling of each raster cell value.

  77. def localCos(): Seq[(K, Tile)]

    Takes the Cosine of each raster cell value.

    Takes the Cosine of each raster cell value.

    Note

    Always returns a double raster.

  78. def localCosh(): Seq[(K, Tile)]

    Takes the hyperbolic cosine of each raster cell value.

    Takes the hyperbolic cosine of each raster cell value.

    Note

    Always returns a double raster.

  79. def localDefined(): Seq[(K, Tile)]

    Maps an integer typed Tile to 1 if the cell value is not NODATA, otherwise 0.

  80. def localDivide(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
    Definition Classes
    DivideTileCollectionMethods
  81. def localDivide(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideTileCollectionMethods
  82. def localDivide(d: Double): Seq[(K, Tile)]

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

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

    Definition Classes
    DivideTileCollectionMethods
  83. def localDivide(i: Int): Seq[(K, Tile)]

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

    Definition Classes
    DivideTileCollectionMethods
  84. def localDivideValue(d: Double): Seq[(K, Tile)]

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

    Definition Classes
    DivideTileCollectionMethods
  85. def localDivideValue(i: Int): Seq[(K, Tile)]

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

    Definition Classes
    DivideTileCollectionMethods
  86. def localDualMap(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): Seq[(K, Tile)]

    Map the values of a each cell to a new value; if the type of the raster is a double type, map using the double function, otherwise map using the integer function.

    Map the values of a each cell to a new value; if the type of the raster is a double type, map using the double function, otherwise map using the integer function.

    Definition Classes
    LocalMapTileCollectionMethods
  87. def localEqual(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the provided raster, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the provided raster, else 0.

    Definition Classes
    EqualTileCollectionMethods
  88. def localEqual(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input double, else 0.

    Definition Classes
    EqualTileCollectionMethods
  89. def localEqual(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Definition Classes
    EqualTileCollectionMethods
  90. def localFloor(): Seq[(K, Tile)]

    Takes the Flooring of each raster cell value.

  91. def localGreater(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than the next raster, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than the next raster, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  92. def localGreater(d: Double): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  93. def localGreater(i: Int): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  94. def localGreaterOrEqual(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than or equal to the next raster, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are greater than or equal to the next raster, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  95. def localGreaterOrEqual(d: Double): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  96. def localGreaterOrEqual(i: Int): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  97. def localGreaterOrEqualRightAssociative(d: Double): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input double, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  98. def localGreaterOrEqualRightAssociative(i: Int): Seq[(K, Tile)]

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than or equal to the input integer, else 0.

    Definition Classes
    GreaterOrEqualTileCollectionMethods
  99. def localGreaterRightAssociative(d: Double): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input double, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  100. def localGreaterRightAssociative(i: Int): Seq[(K, Tile)]

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Returns a TileLayerSeq with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is greater than the input integer, else 0.

    Definition Classes
    GreaterTileCollectionMethods
  101. def localIf(other: Seq[(K, Tile)], cond: (Double, Double) ⇒ Boolean, trueValue: Double, falseValue: Double): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  102. def localIf(other: Seq[(K, Tile)], cond: (Int, Int) ⇒ Boolean, trueValue: Int, falseValue: Int): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  103. def localIf(other: Seq[(K, Tile)], cond: (Double, Double) ⇒ Boolean, trueValue: Double): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  104. def localIf(other: Seq[(K, Tile)], cond: (Int, Int) ⇒ Boolean, trueValue: Int): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  105. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double, falseValue: Double): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  106. def localIf(cond: (Int) ⇒ Boolean, trueValue: Int, falseValue: Int): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  107. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  108. def localIf(cond: (Int) ⇒ Boolean, trueValue: Int): Seq[(K, Tile)]
    Definition Classes
    IfCellTileCollectionMethods
  109. def localInverseMask(other: Seq[(K, Tile)], readMask: Int, writeMask: Int): Seq[(K, Tile)]

    Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster is set to the "readMask" value.

    Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster is set to the "readMask" value.

    For example, if *all* cells in the second raster are set to the readMask value, the output raster will be identical to the first raster.

  110. def localLess(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.

    Definition Classes
    LessTileCollectionMethods
  111. def localLess(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Definition Classes
    LessTileCollectionMethods
  112. def localLess(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Definition Classes
    LessTileCollectionMethods
  113. def localLessOrEqual(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than or equal to the next raster, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than or equal to the next raster, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  114. def localLessOrEqual(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  115. def localLessOrEqual(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  116. def localLessOrEqualRightAssociative(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input double, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  117. def localLessOrEqualRightAssociative(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than or equal to the input integer, else 0.

    Definition Classes
    LessOrEqualTileCollectionMethods
  118. def localLessRightAssociative(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.

    Definition Classes
    LessTileCollectionMethods
  119. def localLessRightAssociative(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.

    Definition Classes
    LessTileCollectionMethods
  120. def localLog(): Seq[(K, Tile)]

    Computes the Log of Tile values.

  121. def localLog10(): Seq[(K, Tile)]

    Computes the Log base 10 of Tile values.

  122. def localMajority(n: Int, rs: Seq[(K, Tile)]*): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the nth most numerous.

    Assigns to each cell the value within the given rasters that is the nth most numerous.

    Definition Classes
    MajorityTileCollectionMethods
  123. def localMajority(n: Int, others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the nth most numerous.

    Assigns to each cell the value within the given rasters that is the nth most numerous.

    Definition Classes
    MajorityTileCollectionMethods
  124. def localMajority(rs: Seq[(K, Tile)]*): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the most numerous.

    Assigns to each cell the value within the given rasters that is the most numerous.

    Definition Classes
    MajorityTileCollectionMethods
  125. def localMajority(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the most numerous.

    Assigns to each cell the value within the given rasters that is the most numerous.

    Definition Classes
    MajorityTileCollectionMethods
  126. def localMap(f: (Int) ⇒ Int): Seq[(K, Tile)]

    Map the integer values of a each cell to a new integer value.

    Map the integer values of a each cell to a new integer value.

    Definition Classes
    LocalMapTileCollectionMethods
  127. def localMapDouble(f: (Double) ⇒ Double): Seq[(K, Tile)]

    Map the double values of a each cell to a new double value.

    Map the double values of a each cell to a new double value.

    Definition Classes
    LocalMapTileCollectionMethods
  128. def localMapIfSet(f: (Int) ⇒ Int): Seq[(K, Tile)]

    For each cell whose value is not NODATA, map their integer values to a new integer value

    For each cell whose value is not NODATA, map their integer values to a new integer value

    Definition Classes
    LocalMapTileCollectionMethods
  129. def localMapIfSetDouble(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): Seq[(K, Tile)]

    For each cell whose value is not a NoData, if the type of the raster is a double type, map using the double function, otherwise map using the integer function.

    For each cell whose value is not a NoData, if the type of the raster is a double type, map using the double function, otherwise map using the integer function.

    Definition Classes
    LocalMapTileCollectionMethods
  130. def localMapIfSetDouble(f: (Double) ⇒ Double): Seq[(K, Tile)]

    For each cell whose value is not Double.NaN, map their double values to a new integer value

    For each cell whose value is not Double.NaN, map their double values to a new integer value

    Definition Classes
    LocalMapTileCollectionMethods
  131. def localMask(other: Seq[(K, Tile)], readMask: Int, writeMask: Int): Seq[(K, Tile)]

    Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster *are not* set to the "readMask" value.

    Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster *are not* set to the "readMask" value.

    For example, if *all* cells in the second raster are set to the readMask value, the output raster will be empty -- all values set to NODATA.

  132. def localMax(others: Seq[Seq[(K, Tile)]])(implicit d: DI): Seq[(K, Tile)]

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

    Definition Classes
    MaxTileCollectionMethods
  133. def localMax(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

    Definition Classes
    MaxTileCollectionMethods
  134. def localMax(d: Double): Seq[(K, Tile)]

    Max a constant Double value to each cell.

    Max a constant Double value to each cell.

    Definition Classes
    MaxTileCollectionMethods
  135. def localMax(i: Int): Seq[(K, Tile)]

    Max a constant Int value to each cell.

    Max a constant Int value to each cell.

    Definition Classes
    MaxTileCollectionMethods
  136. def localMin(others: Seq[Seq[(K, Tile)]])(implicit d: DI): Seq[(K, Tile)]

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

    Definition Classes
    MinTileCollectionMethods
  137. def localMin(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

    Definition Classes
    MinTileCollectionMethods
  138. def localMin(d: Double): Seq[(K, Tile)]

    Min a constant Double value to each cell.

    Min a constant Double value to each cell.

    Definition Classes
    MinTileCollectionMethods
  139. def localMin(i: Int): Seq[(K, Tile)]

    Min a constant Int value to each cell.

    Min a constant Int value to each cell.

    Definition Classes
    MinTileCollectionMethods
  140. def localMinority(n: Int, rs: Seq[(K, Tile)]*)(implicit d: DI): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the nth least numerous.

    Assigns to each cell the value within the given rasters that is the nth least numerous.

    Definition Classes
    MinorityTileCollectionMethods
  141. def localMinority(n: Int, others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the nth least numerous.

    Assigns to each cell the value within the given rasters that is the nth least numerous.

    Definition Classes
    MinorityTileCollectionMethods
  142. def localMinority(rs: Seq[(K, Tile)]*)(implicit d: DI): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the least numerous.

    Assigns to each cell the value within the given rasters that is the least numerous.

    Definition Classes
    MinorityTileCollectionMethods
  143. def localMinority(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Assigns to each cell the value within the given rasters that is the least numerous.

    Assigns to each cell the value within the given rasters that is the least numerous.

    Definition Classes
    MinorityTileCollectionMethods
  144. def localMultiply(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyTileCollectionMethods
  145. def localMultiply(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyTileCollectionMethods
  146. def localMultiply(d: Double): Seq[(K, Tile)]

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  147. def localMultiply(i: Int): Seq[(K, Tile)]

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyTileCollectionMethods
  148. def localNegate(): Seq[(K, Tile)]

    Negate (multiply by -1) each value in a raster.

  149. def localNot(): Seq[(K, Tile)]

    Bitwise negation of Tile.

    Bitwise negation of Tile.

    Note

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

  150. def localOr(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrTileCollectionMethods
  151. def localOr(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrTileCollectionMethods
  152. def localOr(i: Int): Seq[(K, Tile)]

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrTileCollectionMethods
  153. def localPow(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowTileCollectionMethods
  154. def localPow(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowTileCollectionMethods
  155. def localPow(d: Double): Seq[(K, Tile)]

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

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

    Definition Classes
    PowTileCollectionMethods
  156. def localPow(i: Int): Seq[(K, Tile)]

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

    Definition Classes
    PowTileCollectionMethods
  157. def localPowValue(d: Double): Seq[(K, Tile)]

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

    Definition Classes
    PowTileCollectionMethods
  158. def localPowValue(i: Int): Seq[(K, Tile)]

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

    Definition Classes
    PowTileCollectionMethods
  159. def localRound(): Seq[(K, Tile)]

    Round the values of a Tile.

  160. def localSin(): Seq[(K, Tile)]

    Takes the sine of each raster cell value.

    Takes the sine of each raster cell value.

    Note

    Always returns a double raster.

  161. def localSinh(): Seq[(K, Tile)]

    Takes the hyperbolic sine of each raster cell value.

    Takes the hyperbolic sine of each raster cell value.

    Note

    Always returns a double raster.

  162. def localSqrt(): Seq[(K, Tile)]

    Take the square root each value in a raster.

  163. def localSubtract(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractTileCollectionMethods
  164. def localSubtract(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractTileCollectionMethods
  165. def localSubtract(d: Double): Seq[(K, Tile)]

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

    Definition Classes
    SubtractTileCollectionMethods
  166. def localSubtract(i: Int): Seq[(K, Tile)]

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

    Definition Classes
    SubtractTileCollectionMethods
  167. def localSubtractFrom(d: Double): Seq[(K, Tile)]

    Subtract each value of a cell from a double constant value.

    Subtract each value of a cell from a double constant value.

    Definition Classes
    SubtractTileCollectionMethods
  168. def localSubtractFrom(i: Int): Seq[(K, Tile)]

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

    Definition Classes
    SubtractTileCollectionMethods
  169. def localTan(): Seq[(K, Tile)]

    Takes the Tangent of each raster cell value.

    Takes the Tangent of each raster cell value.

    Note

    Always returns a double raster.

  170. def localTanh(): Seq[(K, Tile)]

    Takes the hyperboic cosine of each raster cell value.

    Takes the hyperboic cosine of each raster cell value.

    Note

    Always returns a double raster.

  171. def localUndefined(): Seq[(K, Tile)]

    Maps an integer typed Tile to 1 if the cell value is NODATA, otherwise 0.

  172. def localUnequal(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are not equal, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are not equal, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  173. def localUnequal(d: Double): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input intenger, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input intenger, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  174. def localUnequal(i: Int): Seq[(K, Tile)]

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is equal to the input integer, else 0.

    Definition Classes
    UnequalTileCollectionMethods
  175. def localXor(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorTileCollectionMethods
  176. def localXor(other: Seq[(K, Tile)]): Seq[(K, Tile)]

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorTileCollectionMethods
  177. def localXor(i: Int): Seq[(K, Tile)]

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorTileCollectionMethods
  178. def unary_-: Seq[(K, Tile)]

    Negate (multiply by -1) each value in a raster.

  179. def |(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrTileCollectionMethods
  180. def |(r: Seq[(K, Tile)]): Seq[(K, Tile)]

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrTileCollectionMethods
  181. def |(i: Int): Seq[(K, Tile)]

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrTileCollectionMethods
  182. def |:(i: Int): Seq[(K, Tile)]

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrTileCollectionMethods