Packages

o

geotrellis.spark

RasterSourceRDD

object RasterSourceRDD

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RasterSourceRDD
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val DEFAULT_PARTITION_BYTES: Long
  5. def apply[K, M](sources: Seq[RasterSource], layout: LayoutDefinition, keyExtractor: Aux[K, M], partitionBytes: Long = DEFAULT_PARTITION_BYTES, strategy: OverviewStrategy = OverviewStrategy.DEFAULT)(implicit arg0: SpatialComponent[K], arg1: Boundable[K], arg2: ClassTag[K], arg3: Boundable[M], sc: SparkContext): MultibandTileLayerRDD[K]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def read[K, M](readingSourcesRDD: RDD[ReadingSource], layout: LayoutDefinition, keyExtractor: Aux[K, M], partitioner: Option[Partitioner])(implicit arg0: SpatialComponent[K], arg1: ClassTag[K], arg2: Boundable[M], sc: SparkContext): MultibandTileLayerRDD[K]
  18. def read(readingSourcesRDD: RDD[ReadingSource], layout: LayoutDefinition, partitioner: Option[Partitioner] = None)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  19. def read(readingSources: Seq[ReadingSource], layout: LayoutDefinition, keyExtractor: Aux[SpaceTimeKey, ZonedDateTime], partitionBytes: Long)(implicit sc: SparkContext): MultibandTileLayerRDD[SpaceTimeKey]
  20. def read(readingSources: Seq[ReadingSource], layout: LayoutDefinition, partitionBytes: Long)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  21. def read(readingSources: Seq[ReadingSource], layout: LayoutDefinition, keyExtractor: Aux[SpaceTimeKey, ZonedDateTime])(implicit sc: SparkContext): MultibandTileLayerRDD[SpaceTimeKey]
  22. def read(readingSources: Seq[ReadingSource], layout: LayoutDefinition)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  23. def readPartitionBytes[K, M](readingSources: Seq[ReadingSource], layout: LayoutDefinition, keyExtractor: Aux[K, M], partitionBytes: Long)(implicit arg0: SpatialComponent[K], arg1: ClassTag[K], arg2: Boundable[M], sc: SparkContext): MultibandTileLayerRDD[K]
  24. def spatial(source: RasterSource, layout: LayoutDefinition)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  25. def spatial(sources: Seq[RasterSource], layout: LayoutDefinition, strategy: OverviewStrategy = OverviewStrategy.DEFAULT, partitionBytes: Long = DEFAULT_PARTITION_BYTES)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def temporal(source: RasterSource, layout: LayoutDefinition, keyExtractor: Aux[SpaceTimeKey, ZonedDateTime])(implicit sc: SparkContext): MultibandTileLayerRDD[SpaceTimeKey]
  28. def temporal(sources: Seq[RasterSource], layout: LayoutDefinition, keyExtractor: Aux[SpaceTimeKey, ZonedDateTime], strategy: OverviewStrategy = OverviewStrategy.DEFAULT, partitionBytes: Long = DEFAULT_PARTITION_BYTES)(implicit sc: SparkContext): MultibandTileLayerRDD[SpaceTimeKey]
  29. def tiledLayerRDD[K, M](sources: RDD[RasterSource], layout: LayoutDefinition, keyExtractor: Aux[K, M], geometry: Option[Geometry] = None, resampleMethod: ResampleMethod = NearestNeighbor, rasterSummary: Option[RasterSummary[M]] = None, partitioner: Option[Partitioner] = None, partitionTransform: (Iterable[Raster[MultibandTile]]) ⇒ MultibandTile = ...)(implicit arg0: SpatialComponent[K], arg1: Boundable[K], arg2: ClassTag[K], arg3: Boundable[M], sc: SparkContext): MultibandTileLayerRDD[K]

    On tiling more than a single MultibandTile may get into a group that correspond to the same key.

    On tiling more than a single MultibandTile may get into a group that correspond to the same key. By default the tiledLayerRDD function flattens all bands and converts every group into a single MultibandTile. To override this behavior it is possible to set the partitionTransform function, i.e.:

    partitionTransform = {
      case iter if iter.nonEmpty => iter.map(_.tile).reduce(_ merge _)
      case _                     => MultibandTile(Nil)
    }
  30. def tiledLayerRDD(sources: RDD[RasterSource], layout: LayoutDefinition, resampleMethod: ResampleMethod, geometry: Geometry)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  31. def tiledLayerRDD(sources: RDD[RasterSource], layout: LayoutDefinition, resampleMethod: ResampleMethod)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  32. def tiledLayerRDD(sources: RDD[RasterSource], layout: LayoutDefinition, geometry: Geometry)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  33. def tiledLayerRDD(sources: RDD[RasterSource], layout: LayoutDefinition)(implicit sc: SparkContext): MultibandTileLayerRDD[SpatialKey]
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped