trait LocalMapTileRDDMethods[K] extends TileRDDMethods[K]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- LocalMapTileRDDMethods
- TileRDDMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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
localDualMap(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): RDD[(K, Tile)]
Map the values of a each cell to a new value; if the type of the raster is a double type, map using the double function, otherwise map using the integer function.
-
def
localMap(f: (Int) ⇒ Int): RDD[(K, Tile)]
Map the integer values of a each cell to a new integer value.
-
def
localMapDouble(f: (Double) ⇒ Double): RDD[(K, Tile)]
Map the double values of a each cell to a new double value.
-
def
localMapIfSet(f: (Int) ⇒ Int): RDD[(K, Tile)]
For each cell whose value is not NODATA, map their integer values to a new integer value
-
def
localMapIfSetDouble(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): RDD[(K, Tile)]
For each cell whose value is not a NoData, if the type of the raster is a double type, map using the double function, otherwise map using the integer function.
-
def
localMapIfSetDouble(f: (Double) ⇒ Double): RDD[(K, Tile)]
For each cell whose value is not Double.NaN, map their double values to a new integer value