
geotrellis.spark.mapalgebra.local.GreaterTileRDDMethods.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.11 Show documentation
Show all versions of geotrellis-spark_2.11 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.Greater
import org.apache.spark.Partitioner
import org.apache.spark.rdd.RDD
trait GreaterTileRDDMethods[K] extends TileRDDMethods[K] {
/**
* Returns a TileLayerRDD 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.
*/
def localGreater(i: Int) =
self.mapValues { r => Greater(r, i) }
/**
* Returns a TileLayerRDD 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.
*/
def localGreaterRightAssociative(i: Int) =
self.mapValues { r => Greater(i, r) }
/**
* Returns a TileLayerRDD 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.
*/
def >(i: Int) = localGreater(i)
/**
* Returns a TileLayerRDD 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.
*
* @note Syntax has double '>' due to '>:' operator being reserved in Scala.
*/
def >>:(i: Int) = localGreaterRightAssociative(i)
/**
* Returns a TileLayerRDD 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.
*/
def localGreater(d: Double) =
self.mapValues { r => Greater(r, d) }
/**
* Returns a TileLayerRDD 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.
*/
def localGreaterRightAssociative(d: Double) =
self.mapValues { r => Greater(d, r) }
/**
* Returns a TileLayerRDD 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.
*/
def >(d: Double) = localGreater(d)
/**
* Returns a TileLayerRDD 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.
*
* @note Syntax has double '>' due to '>:' operator being reserved in Scala.
*/
def >>:(d: Double) = localGreaterRightAssociative(d)
/**
* Returns a TileLayerRDD 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.
*/
def localGreater(other: RDD[(K, Tile)], partitioner: Option[Partitioner] = None): RDD[(K, Tile)] =
self.combineValues(other, partitioner)(Greater.apply)
/**
* Returns a TileLayerRDD with data of BitCellType, where cell values equal 1 if
* the corresponding cell valued of the raster are greater than the next
* raster, else 0.
*/
def >(other: RDD[(K, Tile)]) = localGreater(other)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy