
geotrellis.spark.mapalgebra.local.IfCellTileRDDMethods.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotrellis-spark_2.10 Show documentation
Show all versions of geotrellis-spark_2.10 Show documentation
GeoTrellis is an open source geographic data processing engine for high performance applications.
The newest version!
package geotrellis.spark.mapalgebra.local
import geotrellis.raster._
import geotrellis.spark._
import geotrellis.spark.mapalgebra._
import geotrellis.raster.mapalgebra.local.IfCell
import org.apache.spark.Partitioner
import org.apache.spark.rdd.RDD
trait IfCellTileRDDMethods[K] extends TileRDDMethods[K] {
def localIf(cond: Int => Boolean, trueValue: Int) =
self.mapValues { r => IfCell(r, cond, trueValue) }
def localIf(
cond: Double => Boolean,
trueValue: Double
) = self.mapValues { r => IfCell(r, cond, trueValue) }
def localIf(
cond: Int => Boolean,
trueValue: Int,
falseValue: Int
) = self.mapValues {
r => IfCell(r, cond, trueValue, falseValue)
}
def localIf(
cond: Double => Boolean,
trueValue: Double,
falseValue: Double
) = self.mapValues {
r => IfCell(r, cond, trueValue, falseValue)
}
def localIf(
other: RDD[(K, Tile)],
cond: (Int, Int) => Boolean,
trueValue: Int): RDD[(K, Tile)] = localIf(other, cond, trueValue, None)
def localIf(
other: RDD[(K, Tile)],
cond: (Int, Int) => Boolean,
trueValue: Int,
partitioner: Option[Partitioner]
): RDD[(K, Tile)] = self.combineValues(other, partitioner) {
case (r1, r2) => IfCell(r1, r2, cond, trueValue)
}
def localIf(
other: RDD[(K, Tile)],
cond: (Double, Double) => Boolean,
trueValue: Double): RDD[(K, Tile)] = localIf(other, cond, trueValue, None)
def localIf(
other: RDD[(K, Tile)],
cond: (Double, Double) => Boolean,
trueValue: Double,
partitioner: Option[Partitioner]
): RDD[(K, Tile)] = self.combineValues(other, partitioner) {
case (r1, r2) => IfCell(r1, r2, cond, trueValue)
}
def localIf(
other: RDD[(K, Tile)],
cond: (Int, Int) => Boolean,
trueValue: Int,
falseValue: Int): RDD[(K, Tile)] = localIf(other, cond, trueValue, falseValue, None)
def localIf(
other: RDD[(K, Tile)],
cond: (Int, Int) => Boolean,
trueValue: Int,
falseValue: Int,
partitioner: Option[Partitioner]
): RDD[(K, Tile)] = self.combineValues(other, partitioner) {
case (r1, r2) => IfCell(r1, r2, cond, trueValue, falseValue)
}
def localIf(
other: RDD[(K, Tile)],
cond: (Double, Double) => Boolean,
trueValue: Double,
falseValue: Double): RDD[(K, Tile)] = localIf(other, cond, trueValue, falseValue, None)
def localIf(
other: RDD[(K, Tile)],
cond: (Double, Double) => Boolean,
trueValue: Double,
falseValue: Double,
partitioner: Option[Partitioner]
): RDD[(K, Tile)] = self.combineValues(other, partitioner) {
case (r1, r2) => IfCell(r1, r2, cond, trueValue, falseValue)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy