trait LocalMapTileCollectionMethods[K] extends MethodExtensions[Seq[(K, Tile)]]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- LocalMapTileCollectionMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
self: Seq[(K, Tile)]
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
localDualMap(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): Seq[(K, Tile)]
Map the values of a each cell to a new value; if the type of the raster is a double type, map using the double function, otherwise map using the integer function.
-
def
localMap(f: (Int) ⇒ Int): Seq[(K, Tile)]
Map the integer values of a each cell to a new integer value.
-
def
localMapDouble(f: (Double) ⇒ Double): Seq[(K, Tile)]
Map the double values of a each cell to a new double value.
-
def
localMapIfSet(f: (Int) ⇒ Int): Seq[(K, Tile)]
For each cell whose value is not NODATA, map their integer values to a new integer value
-
def
localMapIfSetDouble(fInt: (Int) ⇒ Int)(fDouble: (Double) ⇒ Double): Seq[(K, Tile)]
For each cell whose value is not a NoData, if the type of the raster is a double type, map using the double function, otherwise map using the integer function.
-
def
localMapIfSetDouble(f: (Double) ⇒ Double): Seq[(K, Tile)]
For each cell whose value is not Double.NaN, map their double values to a new integer value