trait LessTileRDDMethods[K] extends TileRDDMethods[K]
- Alphabetic
- By Inheritance
- LessTileRDDMethods
- TileRDDMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
implicit abstract
val
keyClassTag: ClassTag[K]
- Definition Classes
- TileRDDMethods
-
abstract
def
self: RDD[(K, Tile)]
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
<(other: RDD[(K, Tile)]): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.
-
def
<(d: Double): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.
-
def
<(i: Int): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.
-
def
<<:(d: Double): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.
- Note
Syntax has double '<' due to '<:' operator being reserved in Scala.
-
def
<<:(i: Int): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.
- Note
Syntax has double '<' due to '<:' operator being reserved in Scala.
-
def
localLess(other: RDD[(K, Tile)], partitioner: Option[Partitioner] = None): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell valued of the rasters are less than the next raster, else 0.
-
def
localLess(d: Double): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.
-
def
localLess(i: Int): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.
-
def
localLessRightAssociative(d: Double): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input double, else 0.
-
def
localLessRightAssociative(i: Int): RDD[(K, Tile)]
Returns a Tile with data of BitCellType, where cell values equal 1 if the corresponding cell value of the input raster is less than the input integer, else 0.