Class

geotrellis.engine.op.local

LocalRasterSourceMethodExtensions

Related Doc: package local

Permalink

implicit class LocalRasterSourceMethodExtensions extends LocalRasterSourceMethods

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

Instance Constructors

  1. new LocalRasterSourceMethodExtensions(rasterSource: RasterSource)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. def !==(rs: RasterSource): RasterSource

    Permalink

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

    Permalink

    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
  4. def !==(i: Int): RasterSource

    Permalink

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

    Permalink

    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
  6. def !==:(i: Int): RasterSource

    Permalink

    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
  7. final def ##(): Int

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

    Permalink

    And the values of each cell in each raster.

    And the values of each cell in each raster.

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

    Permalink

    And the values of each cell in each raster.

    And the values of each cell in each raster.

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

    Permalink

    And a constant Int value to each cell.

    And a constant Int value to each cell.

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

    Permalink

    And a constant Int value to each cell.

    And a constant Int value to each cell.

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

    Permalink

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

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

    Permalink

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

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

    Permalink

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

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

    Permalink

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

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

    Permalink

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

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

    Permalink

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

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

    Permalink

    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
  19. def **(i: Int): RasterSource

    Permalink

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

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

    Permalink

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

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

    Permalink

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

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

    Permalink

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

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

    Permalink

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

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

    Permalink

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

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

    Permalink

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

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

    Permalink

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

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

    Permalink

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

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

    Permalink

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

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

    Permalink

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

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

    Permalink

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

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

    Permalink

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

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

    Permalink

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

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

    Permalink

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

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

    Permalink

    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
  35. def -:(i: Int): RasterSource

    Permalink

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

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

    Permalink

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

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

    Permalink

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

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

    Permalink

    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
  39. def /(i: Int): RasterSource

    Permalink

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

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

    Permalink

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

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

    Permalink

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

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

    Permalink

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

    Permalink

    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
  44. def <(i: Int): RasterSource

    Permalink

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

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

    Permalink

    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
  49. def <=(i: Int): RasterSource

    Permalink

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

    Permalink

    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
  51. def <=:(i: Int): RasterSource

    Permalink

    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
  52. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  53. def ===(rs: RasterSource): RasterSource

    Permalink

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

    Permalink

    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
  55. def ===(i: Int): RasterSource

    Permalink

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

    Permalink

    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

    Permalink

    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 >(rs: RasterSource): RasterSource

    Permalink

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

    Permalink

    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
  60. def >(i: Int): RasterSource

    Permalink

    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
  61. def >=(rs: RasterSource): RasterSource

    Permalink

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

    Permalink

    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
  63. def >=(i: Int): RasterSource

    Permalink

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

    Permalink

    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

    Permalink

    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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

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

    Permalink

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

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

    Permalink

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

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

    Permalink

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

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

    Permalink
    Definition Classes
    Any
  73. def clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  80. def localAbs(): RasterSource

    Permalink

    Takes the absolute value of each raster cell value.

    Takes the absolute value of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  81. def localAcos(): RasterSource

    Permalink

    Takes the arc cosine of each raster cell value.

    Takes the arc cosine of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  82. def localAdd(rss: Seq[RasterSource]): RasterSource

    Permalink

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

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

    Permalink

    Add the values of each cell in each raster.

    Add the values of each cell in each raster.

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

    Permalink

    Add a constant Double value to each cell.

    Add a constant Double value to each cell.

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

    Permalink

    Add a constant Int value to each cell.

    Add a constant Int value to each cell.

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

    Permalink

    And the values of each cell in each raster.

    And the values of each cell in each raster.

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

    Permalink

    And the values of each cell in each raster.

    And the values of each cell in each raster.

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

    Permalink

    And a constant Int value to each cell.

    And a constant Int value to each cell.

    Definition Classes
    AndRasterSourceMethods
  89. def localAsin(): RasterSource

    Permalink

    Takes the arc sine of each raster cell value.

    Takes the arc sine of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  90. def localAtan(): RasterSource

    Permalink

    Takes the arc tangent of each raster cell value.

    Takes the arc tangent of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  91. def localAtan2(rs: RasterSource): RasterSource

    Permalink

    Takes the arc tangent 2 of each raster cell value.

    Takes the arc tangent 2 of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  92. def localCeil(): RasterSource

    Permalink

    Takes the Ceiling of each raster cell value.

    Takes the Ceiling of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  93. def localCombine[That](rs: RasterSource)(f: (Int, Int) ⇒ Int): RasterSource

    Permalink
    Definition Classes
    LocalRasterSourceMethods
  94. def localCombineDouble[That](rs: RasterSource)(f: (Double, Double) ⇒ Double): RasterSource

    Permalink
    Definition Classes
    LocalRasterSourceMethods
  95. def localCos(): RasterSource

    Permalink

    Takes the cosine of each raster cell value.

    Takes the cosine of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  96. def localCosh(): RasterSource

    Permalink

    Takes the cosineh of each raster cell value.

    Takes the cosineh of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  97. def localDefined(): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  98. def localDivide(rss: Seq[RasterSource]): RasterSource

    Permalink

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

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

    Permalink

    Divide the values of each cell in each raster.

    Divide the values of each cell in each raster.

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

    Permalink

    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
  101. def localDivide(i: Int): RasterSource

    Permalink

    Divide each value of the raster by a constant value.

    Divide each value of the raster by a constant value.

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

    Permalink

    Divide a double constant value by each cell value.

    Divide a double constant value by each cell value.

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

    Permalink

    Divide a constant value by each cell value.

    Divide a constant value by each cell value.

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

    Permalink
    Definition Classes
    LocalRasterSourceMethods
  105. def localDualMap(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): RasterSource

    Permalink

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

    Permalink

    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
  107. def localEqual(d: Double): RasterSource

    Permalink

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

    Permalink

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

    Permalink

    Takes the Floor of each raster cell value.

    Takes the Floor of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  110. def localGreater(rs: RasterSource): RasterSource

    Permalink

    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
  111. def localGreater(d: Double): RasterSource

    Permalink

    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
  112. def localGreater(i: Int): RasterSource

    Permalink

    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
  113. def localGreaterOrEqual(rs: RasterSource): RasterSource

    Permalink

    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
  114. def localGreaterOrEqual(d: Double): RasterSource

    Permalink

    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
  115. def localGreaterOrEqual(i: Int): RasterSource

    Permalink

    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
  116. def localGreaterOrEqualRightAssociative(d: Double): RasterSource

    Permalink

    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 localGreaterOrEqualRightAssociative(i: Int): RasterSource

    Permalink

    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 localGreaterRightAssociative(d: Double): RasterSource

    Permalink

    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
  119. def localGreaterRightAssociative(i: Int): RasterSource

    Permalink

    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
  120. def localIf(rs: RasterSource, cond: (Double, Double) ⇒ Boolean, trueValue: Double, falseValue: Double): RasterSource

    Permalink

    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
  121. def localIf(rs: RasterSource, cond: (Int, Int) ⇒ Boolean, trueValue: Int, falseValue: Int): RasterSource

    Permalink

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

    Permalink

    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
  123. def localIf(rs: RasterSource, cond: (Int, Int) ⇒ Boolean, trueValue: Int): RasterSource

    Permalink

    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
  124. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double, falseValue: Double): RasterSource

    Permalink

    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
  125. def localIf(cond: (Int) ⇒ Boolean, trueValue: Int, falseValue: Int): RasterSource

    Permalink

    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
  126. def localIf(cond: (Double) ⇒ Boolean, trueValue: Double): RasterSource

    Permalink

    Maps all cells matching cond to Double trueValue.

    Maps all cells matching cond to Double trueValue.

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

    Permalink

    Maps all cells matching cond to Int trueValue.

    Maps all cells matching cond to Int trueValue.

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

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  129. def localLess(rs: RasterSource): RasterSource

    Permalink

    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
  130. def localLess(d: Double): RasterSource

    Permalink

    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
  131. def localLess(i: Int): RasterSource

    Permalink

    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
  132. def localLessOrEqual(rs: RasterSource): RasterSource

    Permalink

    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
  133. def localLessOrEqual(d: Double): RasterSource

    Permalink

    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
  134. def localLessOrEqual(i: Int): RasterSource

    Permalink

    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
  135. def localLessOrEqualRightAssociative(d: Double): RasterSource

    Permalink

    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 localLessOrEqualRightAssociative(i: Int): RasterSource

    Permalink

    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 localLessRightAssociative(d: Double): RasterSource

    Permalink

    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
  138. def localLessRightAssociative(i: Int): RasterSource

    Permalink

    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
  139. def localLog(): RasterSource

    Permalink

    Computes the Log of a Raster.

    Computes the Log of a Raster.

    Definition Classes
    LocalRasterSourceMethods
  140. def localLog10(): RasterSource

    Permalink

    Takes the Log base 10 of each raster cell value.

    Takes the Log base 10 of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  141. def localMajority(n: Int, rss: RasterSource*)(implicit d: DI): RasterSource

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    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
    LocalMapRasterSourceMethods
  150. def localMask(rs: RasterSource, readMask: Int, writeMask: Int): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  151. def localMax(rss: Seq[RasterSource]): RasterSource

    Permalink

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

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

    Permalink

    Max the values of each cell in each raster.

    Max the values of each cell in each raster.

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

    Permalink

    Max a constant Double value to each cell.

    Max a constant Double value to each cell.

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

    Permalink

    Max a constant Int value to each cell.

    Max a constant Int value to each cell.

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

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  156. def localMaxN(n: Int, rss: Seq[RasterSource]): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  157. def localMean(rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  158. def localMean(rss: Seq[RasterSource]): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  159. def localMin(rss: Seq[RasterSource]): RasterSource

    Permalink

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

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

    Permalink

    Min the values of each cell in each raster.

    Min the values of each cell in each raster.

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

    Permalink

    Min a constant Double value to each cell.

    Min a constant Double value to each cell.

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

    Permalink

    Min a constant Int value to each cell.

    Min a constant Int value to each cell.

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

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  164. def localMinN(n: Int, rss: Seq[RasterSource]): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  165. def localMinority(n: Int, rss: RasterSource*)(implicit d: DI): RasterSource

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

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

    Permalink

    Multiply the values of each cell in each raster.

    Multiply the values of each cell in each raster.

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

    Permalink

    Multiply a double constant value from each cell.

    Multiply a double constant value from each cell.

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

    Permalink

    Multiply a constant value from each cell.

    Multiply a constant value from each cell.

    Definition Classes
    MultiplyRasterSourceMethods
  173. def localNegate(): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  174. def localNot(): RasterSource

    Permalink

    Get the negation of this raster source.

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

    Definition Classes
    LocalRasterSourceMethods
  175. def localOr(rss: Seq[RasterSource]): RasterSource

    Permalink

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

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

    Permalink

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

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

    Permalink

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

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

    Permalink

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

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

    Permalink

    Pow the values of each cell in each raster.

    Pow the values of each cell in each raster.

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

    Permalink

    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
  181. def localPow(i: Int): RasterSource

    Permalink

    Pow each value of the raster by a constant value.

    Pow each value of the raster by a constant value.

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

    Permalink

    Pow a double constant value by each cell value.

    Pow a double constant value by each cell value.

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

    Permalink

    Pow a constant value by each cell value.

    Pow a constant value by each cell value.

    Definition Classes
    PowRasterSourceMethods
  184. def localRound(): RasterSource

    Permalink

    Round the values of a Raster.

    Round the values of a Raster.

    Definition Classes
    LocalRasterSourceMethods
  185. def localSin(): RasterSource

    Permalink

    Takes the sine of each raster cell value.

    Takes the sine of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  186. def localSinh(): RasterSource

    Permalink

    Takes the sineh of each raster cell value.

    Takes the sineh of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  187. def localSqrt(): RasterSource

    Permalink

    Take the square root each value in a raster.

    Take the square root each value in a raster.

    Definition Classes
    LocalRasterSourceMethods
  188. def localSubtract(rss: Seq[RasterSource]): RasterSource

    Permalink

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

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

    Permalink

    Subtract the values of each cell in each raster.

    Subtract the values of each cell in each raster.

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

    Permalink

    Subtract a double constant value from each cell.

    Subtract a double constant value from each cell.

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

    Permalink

    Subtract a constant value from each cell.

    Subtract a constant value from each cell.

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

    Permalink

    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
  193. def localSubtractFrom(i: Int): RasterSource

    Permalink

    Subtract each value of a cell from a constant value.

    Subtract each value of a cell from a constant value.

    Definition Classes
    SubtractRasterSourceMethods
  194. def localTan(): RasterSource

    Permalink

    Takes the tangent of each raster cell value.

    Takes the tangent of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  195. def localTanh(): RasterSource

    Permalink

    Takes the tangenth of each raster cell value.

    Takes the tangenth of each raster cell value.

    Definition Classes
    LocalRasterSourceMethods
  196. def localUndefined(): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  197. def localUnequal(rs: RasterSource): RasterSource

    Permalink

    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
  198. def localUnequal(d: Double): RasterSource

    Permalink

    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
  199. def localUnequal(i: Int): RasterSource

    Permalink

    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
  200. def localVariety(rss: RasterSource*)(implicit d: raster.DI): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  201. def localVariety(rss: Seq[RasterSource]): RasterSource

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  202. def localXor(rss: Seq[RasterSource]): RasterSource

    Permalink

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

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

    Permalink

    Xor the values of each cell in each raster.

    Xor the values of each cell in each raster.

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

    Permalink

    Xor a constant Int value to each cell.

    Xor a constant Int value to each cell.

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

    Permalink

    Masks this raster by the given Geometry.

    Masks this raster by the given Geometry.

    Definition Classes
    LocalRasterSourceMethods
  206. def mask(geom: Geometry): RasterSource

    Permalink

    Masks this raster by the given Geometry.

    Masks this raster by the given Geometry.

    Definition Classes
    LocalRasterSourceMethods
  207. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  208. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  209. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  210. val rasterSource: RasterSource

    Permalink
  211. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  212. def toString(): String

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

    Permalink

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

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

    Definition Classes
    LocalRasterSourceMethods
  214. def unary_~(): RasterSource

    Permalink

    Get the negation of this raster source.

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

    Definition Classes
    LocalRasterSourceMethods
  215. final def wait(): Unit

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

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

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

    Permalink

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

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

    Permalink

    Or the values of each cell in each raster.

    Or the values of each cell in each raster.

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

    Permalink

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

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

    Permalink

    Or a constant Int value to each cell.

    Or a constant Int value to each cell.

    Definition Classes
    OrRasterSourceMethods

Inherited from LocalRasterSourceMethods

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