geotrellis.engine.op.local

LocalRasterSourceMethods

trait LocalRasterSourceMethods extends RasterSourceMethods with LocalMapRasterSourceMethods with AddRasterSourceMethods with SubtractRasterSourceMethods with MultiplyRasterSourceMethods with DivideRasterSourceMethods with AndRasterSourceMethods with OrRasterSourceMethods with XorRasterSourceMethods with MinRasterSourceMethods with MaxRasterSourceMethods with PowRasterSourceMethods with EqualRasterSourceMethods with UnequalRasterSourceMethods with GreaterRasterSourceMethods with LessRasterSourceMethods with GreaterOrEqualRasterSourceMethods with LessOrEqualRasterSourceMethods with ConditionalRasterSourceMethods with MajorityRasterSourceMethods with MinorityRasterSourceMethods

Annotations
@deprecated
Deprecated

(Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LocalRasterSourceMethods
  2. MinorityRasterSourceMethods
  3. MajorityRasterSourceMethods
  4. ConditionalRasterSourceMethods
  5. LessOrEqualRasterSourceMethods
  6. GreaterOrEqualRasterSourceMethods
  7. LessRasterSourceMethods
  8. GreaterRasterSourceMethods
  9. UnequalRasterSourceMethods
  10. EqualRasterSourceMethods
  11. PowRasterSourceMethods
  12. MaxRasterSourceMethods
  13. MinRasterSourceMethods
  14. XorRasterSourceMethods
  15. OrRasterSourceMethods
  16. AndRasterSourceMethods
  17. DivideRasterSourceMethods
  18. MultiplyRasterSourceMethods
  19. SubtractRasterSourceMethods
  20. AddRasterSourceMethods
  21. LocalMapRasterSourceMethods
  22. RasterSourceMethods
  23. AnyRef
  24. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val rasterSource: RasterSource

    Definition Classes
    RasterSourceMethods

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. def !==(rs: RasterSource): RasterSource

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

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

    Definition Classes
    UnequalRasterSourceMethods
  4. def !==(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  5. def !==(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  6. def !==:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  7. def !==:(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  8. final def ##(): Int

    Definition Classes
    AnyRef → Any
  9. def &(rss: Seq[RasterSource]): RasterSource

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndRasterSourceMethods
  10. def &(rs: RasterSource): RasterSource

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndRasterSourceMethods
  11. def &(i: Int): RasterSource

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndRasterSourceMethods
  12. def &:(i: Int): RasterSource

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndRasterSourceMethods
  13. def *(rss: Seq[RasterSource]): RasterSource

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyRasterSourceMethods
  14. def *(rs: RasterSource): RasterSource

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyRasterSourceMethods
  15. def *(d: Double): RasterSource

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  16. def *(i: Int): RasterSource

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  17. def **(rss: Seq[RasterSource]): RasterSource

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowRasterSourceMethods
  18. def **(rs: RasterSource): RasterSource

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowRasterSourceMethods
  19. def **(d: Double): RasterSource

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

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

    Definition Classes
    PowRasterSourceMethods
  20. def **(i: Int): RasterSource

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

    Definition Classes
    PowRasterSourceMethods
  21. def **:(d: Double): RasterSource

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

    Definition Classes
    PowRasterSourceMethods
  22. def **:(i: Int): RasterSource

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

    Definition Classes
    PowRasterSourceMethods
  23. def *:(d: Double): RasterSource

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  24. def *:(i: Int): RasterSource

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  25. def +(rss: Seq[RasterSource]): RasterSource

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddRasterSourceMethods
  26. def +(rs: RasterSource): RasterSource

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddRasterSourceMethods
  27. def +(d: Double): RasterSource

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddRasterSourceMethods
  28. def +(i: Int): RasterSource

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddRasterSourceMethods
  29. def +:(d: Double): RasterSource

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddRasterSourceMethods
  30. def +:(i: Int): RasterSource

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddRasterSourceMethods
  31. def -(rss: Seq[RasterSource]): RasterSource

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractRasterSourceMethods
  32. def -(rs: RasterSource): RasterSource

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractRasterSourceMethods
  33. def -(d: Double): RasterSource

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

    Definition Classes
    SubtractRasterSourceMethods
  34. def -(i: Int): RasterSource

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

    Definition Classes
    SubtractRasterSourceMethods
  35. def -:(d: Double): RasterSource

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

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

    Definition Classes
    SubtractRasterSourceMethods
  36. def -:(i: Int): RasterSource

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

    Definition Classes
    SubtractRasterSourceMethods
  37. def /(rss: Seq[RasterSource]): RasterSource

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideRasterSourceMethods
  38. def /(rs: RasterSource): RasterSource

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideRasterSourceMethods
  39. def /(d: Double): RasterSource

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

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

    Definition Classes
    DivideRasterSourceMethods
  40. def /(i: Int): RasterSource

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

    Definition Classes
    DivideRasterSourceMethods
  41. def /:(d: Double): RasterSource

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

    Definition Classes
    DivideRasterSourceMethods
  42. def /:(i: Int): RasterSource

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

    Definition Classes
    DivideRasterSourceMethods
  43. def <(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  44. def <(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  45. def <(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  46. def <<:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
    Note

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

  47. def <<:(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
    Note

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

  48. def <=(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  49. def <=(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  50. def <=(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  51. def <=:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  52. def <=:(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  53. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  54. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  55. def ===(rs: RasterSource): RasterSource

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

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

    Definition Classes
    EqualRasterSourceMethods
  56. def ===(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    EqualRasterSourceMethods
  57. def ===(i: Int): RasterSource

    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
    EqualRasterSourceMethods
  58. def ===:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    EqualRasterSourceMethods
  59. def ===:(i: Int): RasterSource

    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
    EqualRasterSourceMethods
  60. def >(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  61. def >(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  62. def >(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  63. def >=(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  64. def >=(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  65. def >=(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  66. def >=:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  67. def >=:(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  68. def >>:(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
    Note

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

  69. def >>:(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
    Note

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

  70. def ^(rss: Seq[RasterSource]): RasterSource

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorRasterSourceMethods
  71. def ^(rs: RasterSource): RasterSource

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorRasterSourceMethods
  72. def ^(i: Int): RasterSource

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorRasterSourceMethods
  73. def ^:(i: Int): RasterSource

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorRasterSourceMethods
  74. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  75. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  77. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  78. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  79. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  80. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  81. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  82. def localAbs(): RasterSource

    Takes the absolute value of each raster cell value.

  83. def localAcos(): RasterSource

    Takes the arc cosine of each raster cell value.

  84. def localAdd(rss: Seq[RasterSource]): RasterSource

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddRasterSourceMethods
  85. def localAdd(rs: RasterSource): RasterSource

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

    Definition Classes
    AddRasterSourceMethods
  86. def localAdd(d: Double): RasterSource

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

    Definition Classes
    AddRasterSourceMethods
  87. def localAdd(i: Int): RasterSource

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

    Definition Classes
    AddRasterSourceMethods
  88. def localAnd(rss: Seq[RasterSource]): RasterSource

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndRasterSourceMethods
  89. def localAnd(rs: RasterSource): RasterSource

    And the values of each cell in each raster.

    And the values of each cell in each raster.

    Definition Classes
    AndRasterSourceMethods
  90. def localAnd(i: Int): RasterSource

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndRasterSourceMethods
  91. def localAsin(): RasterSource

    Takes the arc sine of each raster cell value.

  92. def localAtan(): RasterSource

    Takes the arc tangent of each raster cell value.

  93. def localAtan2(rs: RasterSource): RasterSource

    Takes the arc tangent 2 of each raster cell value.

  94. def localCeil(): RasterSource

    Takes the Ceiling of each raster cell value.

  95. def localCombine[That](rs: RasterSource)(f: (Int, Int) ⇒ Int): RasterSource

  96. def localCombineDouble[That](rs: RasterSource)(f: (Double, Double) ⇒ Double): RasterSource

  97. def localCos(): RasterSource

    Takes the cosine of each raster cell value.

  98. def localCosh(): RasterSource

    Takes the cosineh of each raster cell value.

  99. def localDefined(): RasterSource

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

  100. def localDivide(rss: Seq[RasterSource]): RasterSource

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideRasterSourceMethods
  101. def localDivide(rs: RasterSource): RasterSource

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

    Definition Classes
    DivideRasterSourceMethods
  102. def localDivide(d: Double): RasterSource

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

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

    Definition Classes
    DivideRasterSourceMethods
  103. def localDivide(i: Int): RasterSource

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

    Definition Classes
    DivideRasterSourceMethods
  104. def localDivideValue(d: Double): RasterSource

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

    Definition Classes
    DivideRasterSourceMethods
  105. def localDivideValue(i: Int): RasterSource

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

    Definition Classes
    DivideRasterSourceMethods
  106. def localDualCombine[That](rs: RasterSource)(fInt: (Int, Int) ⇒ Int)(fDouble: (Double, Double) ⇒ Double): RasterSource

  107. def localDualMap(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): RasterSource

    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
    LocalMapRasterSourceMethods
  108. def localEqual(rs: RasterSource): RasterSource

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

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

    Definition Classes
    EqualRasterSourceMethods
  109. def localEqual(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    EqualRasterSourceMethods
  110. def localEqual(i: Int): RasterSource

    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
    EqualRasterSourceMethods
  111. def localFloor(): RasterSource

    Takes the Floor of each raster cell value.

  112. def localGreater(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  113. def localGreater(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  114. def localGreater(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  115. def localGreaterOrEqual(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  116. def localGreaterOrEqual(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  117. def localGreaterOrEqual(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  118. def localGreaterOrEqualRightAssociative(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  119. def localGreaterOrEqualRightAssociative(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterOrEqualRasterSourceMethods
  120. def localGreaterRightAssociative(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  121. def localGreaterRightAssociative(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    GreaterRasterSourceMethods
  122. def localIf(rs: RasterSource, cond: (Double, Double) ⇒ Boolean, trueValue: Double, falseValue: Double): RasterSource

    Given a Double condition over two rasters, set the value of each cell in the output to a specified true or false value after testing the specified condition on the corresponding values in each of the two input rasters.

    Given a Double condition over two rasters, set the value of each cell in the output to a specified true or false value after testing the specified condition on the corresponding values in each of the two input rasters.

    Definition Classes
    ConditionalRasterSourceMethods
  123. def localIf(rs: RasterSource, cond: (Int, Int) ⇒ Boolean, trueValue: Int, falseValue: Int): RasterSource

    Given a condition over two rasters, set the value of each cell in the output to a specified true or false value after testing the specified condition on the corresponding values in each of the two input rasters.

    Given a condition over two rasters, set the value of each cell in the output to a specified true or false value after testing the specified condition on the corresponding values in each of the two input rasters.

    Definition Classes
    ConditionalRasterSourceMethods
  124. def localIf(rs: RasterSource, cond: (Double, Double) ⇒ Boolean, trueValue: Double): RasterSource

    Given a Double condition over two rasters, set the value of each cell in the output to a specified value if the condition is true given the corresponding values in each of the two input rasters.

    Given a Double condition over two rasters, set the value of each cell in the output to a specified value if the condition is true given the corresponding values in each of the two input rasters.

    Definition Classes
    ConditionalRasterSourceMethods
  125. def localIf(rs: RasterSource, cond: (Int, Int) ⇒ Boolean, trueValue: Int): RasterSource

    Given a condition over two rasters, set the value of each cell in the output to a specified value if the condition is true given the corresponding values in each of the two input rasters.

    Given a condition over two rasters, set the value of each cell in the output to a specified value if the condition is true given the corresponding values in each of the two input rasters.

    Definition Classes
    ConditionalRasterSourceMethods
  126. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double, falseValue: Double): RasterSource

    Set all values of output raster to one value or another based on whether a condition is true or false for Double values.

    Set all values of output raster to one value or another based on whether a condition is true or false for Double values.

    Definition Classes
    ConditionalRasterSourceMethods
  127. def localIf(cond: (Int) ⇒ Boolean, trueValue: Int, falseValue: Int): RasterSource

    Set all values of output raster to one value or another based on whether a condition is true or false.

    Set all values of output raster to one value or another based on whether a condition is true or false.

    Definition Classes
    ConditionalRasterSourceMethods
  128. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double): RasterSource

    Maps all cells matching cond to Double trueValue.

    Maps all cells matching cond to Double trueValue.

    Definition Classes
    ConditionalRasterSourceMethods
  129. def localIf(cond: (Int) ⇒ Boolean, trueValue: Int): RasterSource

    Maps all cells matching cond to Int trueValue.

    Maps all cells matching cond to Int trueValue.

    Definition Classes
    ConditionalRasterSourceMethods
  130. def localInverseMask(rs: RasterSource, readMask: Int, writeMask: Int): RasterSource

    InverseMasks this raster based on cell values of the second raster.

    InverseMasks this raster based on cell values of the second raster. See InverseMask.

  131. def localLess(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  132. def localLess(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  133. def localLess(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  134. def localLessOrEqual(rs: RasterSource): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  135. def localLessOrEqual(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  136. def localLessOrEqual(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  137. def localLessOrEqualRightAssociative(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  138. def localLessOrEqualRightAssociative(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessOrEqualRasterSourceMethods
  139. def localLessRightAssociative(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  140. def localLessRightAssociative(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    LessRasterSourceMethods
  141. def localLog(): RasterSource

    Computes the Log of a Raster.

  142. def localLog10(): RasterSource

    Takes the Log base 10 of each raster cell value.

  143. def localMajority(n: Int, rss: RasterSource*)(implicit d: DI): RasterSource

    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
    MajorityRasterSourceMethods
  144. def localMajority(n: Int, rss: Seq[RasterSource]): RasterSource

    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
    MajorityRasterSourceMethods
  145. def localMajority(rss: RasterSource*)(implicit d: DI): RasterSource

    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
    MajorityRasterSourceMethods
  146. def localMajority(rss: Seq[RasterSource]): RasterSource

    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
    MajorityRasterSourceMethods
  147. def localMap(f: (Int) ⇒ Int): RasterSource

    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
    LocalMapRasterSourceMethods
  148. def localMapDouble(f: (Double) ⇒ Double): RasterSource

    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
    LocalMapRasterSourceMethods
  149. def localMapIfSet(f: (Int) ⇒ Int): RasterSource

    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
    LocalMapRasterSourceMethods
  150. def localMapIfSetDouble(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): RasterSource

    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
    LocalMapRasterSourceMethods
  151. def localMapIfSetDouble(f: (Double) ⇒ Double): RasterSource

    For each cell whose value is not Double.

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

    Definition Classes
    LocalMapRasterSourceMethods
  152. def localMask(rs: RasterSource, readMask: Int, writeMask: Int): RasterSource

    Masks this raster based on cell values of the second raster.

    Masks this raster based on cell values of the second raster. See Mask.

  153. def localMax(rss: Seq[RasterSource]): RasterSource

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

    Definition Classes
    MaxRasterSourceMethods
  154. def localMax(rs: RasterSource): RasterSource

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

    Definition Classes
    MaxRasterSourceMethods
  155. def localMax(d: Double): RasterSource

    Max a constant Double value to each cell.

    Max a constant Double value to each cell.

    Definition Classes
    MaxRasterSourceMethods
  156. def localMax(i: Int): RasterSource

    Max a constant Int value to each cell.

    Max a constant Int value to each cell.

    Definition Classes
    MaxRasterSourceMethods
  157. def localMaxN(n: Int, rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Assigns to each cell the value within the given rasters that is the nth max

  158. def localMaxN(n: Int, rss: Seq[RasterSource]): RasterSource

    Assigns to each cell the value within the given rasters that is the nth max

  159. def localMean(rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Takes the mean of the values of each cell in the set of rasters.

  160. def localMean(rss: Seq[RasterSource]): RasterSource

    Takes the mean of the values of each cell in the set of rasters.

  161. def localMin(rss: Seq[RasterSource]): RasterSource

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

    Definition Classes
    MinRasterSourceMethods
  162. def localMin(rs: RasterSource): RasterSource

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

    Definition Classes
    MinRasterSourceMethods
  163. def localMin(d: Double): RasterSource

    Min a constant Double value to each cell.

    Min a constant Double value to each cell.

    Definition Classes
    MinRasterSourceMethods
  164. def localMin(i: Int): RasterSource

    Min a constant Int value to each cell.

    Min a constant Int value to each cell.

    Definition Classes
    MinRasterSourceMethods
  165. def localMinN(n: Int, rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Assigns to each cell the value within the given rasters that is the nth min

  166. def localMinN(n: Int, rss: Seq[RasterSource]): RasterSource

    Assigns to each cell the value within the given rasters that is the nth min

  167. def localMinority(n: Int, rss: RasterSource*)(implicit d: DI): RasterSource

    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
    MinorityRasterSourceMethods
  168. def localMinority(n: Int, rss: Seq[RasterSource]): RasterSource

    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
    MinorityRasterSourceMethods
  169. def localMinority(rss: RasterSource*)(implicit d: DI): RasterSource

    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
    MinorityRasterSourceMethods
  170. def localMinority(rss: Seq[RasterSource]): RasterSource

    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
    MinorityRasterSourceMethods
  171. def localMultiply(rss: Seq[RasterSource]): RasterSource

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyRasterSourceMethods
  172. def localMultiply(rs: RasterSource): RasterSource

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

    Definition Classes
    MultiplyRasterSourceMethods
  173. def localMultiply(d: Double): RasterSource

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  174. def localMultiply(i: Int): RasterSource

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  175. def localNegate(): RasterSource

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

  176. def localNot(): RasterSource

    Get the negation of this raster source.

    Get the negation of this raster source. Will convert double values into integers.

  177. def localOr(rss: Seq[RasterSource]): RasterSource

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrRasterSourceMethods
  178. def localOr(rs: RasterSource): RasterSource

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrRasterSourceMethods
  179. def localOr(i: Int): RasterSource

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrRasterSourceMethods
  180. def localPow(rss: Seq[RasterSource]): RasterSource

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowRasterSourceMethods
  181. def localPow(rs: RasterSource): RasterSource

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

    Definition Classes
    PowRasterSourceMethods
  182. def localPow(d: Double): RasterSource

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

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

    Definition Classes
    PowRasterSourceMethods
  183. def localPow(i: Int): RasterSource

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

    Definition Classes
    PowRasterSourceMethods
  184. def localPowValue(d: Double): RasterSource

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

    Definition Classes
    PowRasterSourceMethods
  185. def localPowValue(i: Int): RasterSource

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

    Definition Classes
    PowRasterSourceMethods
  186. def localRound(): RasterSource

    Round the values of a Raster.

  187. def localSin(): RasterSource

    Takes the sine of each raster cell value.

  188. def localSinh(): RasterSource

    Takes the sineh of each raster cell value.

  189. def localSqrt(): RasterSource

    Take the square root each value in a raster.

  190. def localSubtract(rss: Seq[RasterSource]): RasterSource

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractRasterSourceMethods
  191. def localSubtract(rs: RasterSource): RasterSource

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

    Definition Classes
    SubtractRasterSourceMethods
  192. def localSubtract(d: Double): RasterSource

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

    Definition Classes
    SubtractRasterSourceMethods
  193. def localSubtract(i: Int): RasterSource

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

    Definition Classes
    SubtractRasterSourceMethods
  194. def localSubtractFrom(d: Double): RasterSource

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

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

    Definition Classes
    SubtractRasterSourceMethods
  195. def localSubtractFrom(i: Int): RasterSource

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

    Definition Classes
    SubtractRasterSourceMethods
  196. def localTan(): RasterSource

    Takes the tangent of each raster cell value.

  197. def localTanh(): RasterSource

    Takes the tangenth of each raster cell value.

  198. def localUndefined(): RasterSource

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

  199. def localUnequal(rs: RasterSource): RasterSource

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

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

    Definition Classes
    UnequalRasterSourceMethods
  200. def localUnequal(d: Double): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  201. def localUnequal(i: Int): RasterSource

    Returns a Raster 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 Raster 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
    UnequalRasterSourceMethods
  202. def localVariety(rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Gives the count of unique values at each location in a set of Rasters.

  203. def localVariety(rss: Seq[RasterSource]): RasterSource

    Gives the count of unique values at each location in a set of Rasters.

  204. def localXor(rss: Seq[RasterSource]): RasterSource

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorRasterSourceMethods
  205. def localXor(rs: RasterSource): RasterSource

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

    Definition Classes
    XorRasterSourceMethods
  206. def localXor(i: Int): RasterSource

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

    Definition Classes
    XorRasterSourceMethods
  207. def mask(geoms: Iterable[Geometry]): RasterSource

    Masks this raster by the given Geometry.

  208. def mask(geom: Geometry): RasterSource

    Masks this raster by the given Geometry.

  209. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  210. final def notify(): Unit

    Definition Classes
    AnyRef
  211. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  212. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  213. def toString(): String

    Definition Classes
    AnyRef → Any
  214. def unary_-(): RasterSource

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

  215. def unary_~(): RasterSource

    Get the negation of this raster source.

    Get the negation of this raster source. Will convert double values into integers.

  216. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  217. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  218. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  219. def |(rss: Seq[RasterSource]): RasterSource

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrRasterSourceMethods
  220. def |(rs: RasterSource): RasterSource

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

    Definition Classes
    OrRasterSourceMethods
  221. def |(i: Int): RasterSource

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrRasterSourceMethods
  222. def |:(i: Int): RasterSource

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrRasterSourceMethods

Inherited from LessRasterSourceMethods

Inherited from EqualRasterSourceMethods

Inherited from PowRasterSourceMethods

Inherited from MaxRasterSourceMethods

Inherited from MinRasterSourceMethods

Inherited from XorRasterSourceMethods

Inherited from OrRasterSourceMethods

Inherited from AndRasterSourceMethods

Inherited from DivideRasterSourceMethods

Inherited from AddRasterSourceMethods

Inherited from RasterSourceMethods

Inherited from AnyRef

Inherited from Any

Ungrouped