t

geotrellis.spark.mapalgebra.local

GreaterTileRDDMethods

trait GreaterTileRDDMethods[K] extends TileRDDMethods[K]

Linear Supertypes
TileRDDMethods[K], MethodExtensions[RDD[(K, Tile)]], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GreaterTileRDDMethods
  2. TileRDDMethods
  3. MethodExtensions
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. implicit abstract val keyClassTag: ClassTag[K]
    Definition Classes
    TileRDDMethods
  2. abstract def self: RDD[(K, Tile)]
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def >(other: RDD[(K, Tile)]): RDD[(K, Tile)]

    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.

  2. def >(d: Double): RDD[(K, Tile)]

    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.

  3. def >(i: Int): RDD[(K, Tile)]

    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.

  4. def >>:(d: Double): RDD[(K, Tile)]

    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.

    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.

  5. def >>:(i: Int): RDD[(K, Tile)]

    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.

    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.

  6. def localGreater(other: RDD[(K, Tile)], partitioner: Option[Partitioner] = None): RDD[(K, Tile)]

    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.

  7. def localGreater(d: Double): RDD[(K, Tile)]

    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.

  8. def localGreater(i: Int): RDD[(K, Tile)]

    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.

  9. def localGreaterRightAssociative(d: Double): RDD[(K, Tile)]

    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.

  10. def localGreaterRightAssociative(i: Int): RDD[(K, Tile)]

    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.