geotrellis.source

RasterSourceSeq

case class RasterSourceSeq(seq: Seq[RasterSource]) extends Product with Serializable

This class gives the ability to apply a local operation that reduces a sequence of rasters to a set of rasters that are loaded in parallel. So if you wanted to group the raster loading by loading some number of RasterSources simultaneously, use this class to group the RasterSources.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RasterSourceSeq
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RasterSourceSeq(seq: Seq[RasterSource])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def and(): RasterSource

    Takes the logical And of each cell value

  7. def applyOp(f: (Seq[Op[Raster]]) ⇒ Op[Raster]): RasterSource

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def difference(): RasterSource

    Takes the difference of the rasters in the sequence from left to right

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def exponentiate(): RasterSource

    Raises each cell value to the power of the next raster, from left to right

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def localAdd(): RasterSource

    Adds all the rasters in the sequence

  17. def localDivide(): RasterSource

    Divides the rasters in the sequence from left to right

  18. def localMultiply(): RasterSource

    Takes the product of the rasters in the sequence

  19. def localSubtract(): RasterSource

    Takes the difference of the rasters in the sequence from left to right

  20. def max(): RasterSource

    Takes the max of each cell value

  21. def min(): RasterSource

    Takes the min of each cell value

  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def or(): RasterSource

    Takes the logical Or of each cell value

  26. def product(): RasterSource

    Takes the product of the rasters in the sequence

  27. val rasterDefinition: Op[RasterDefinition]

  28. val seq: Seq[RasterSource]

  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def xor(): RasterSource

    Takes the logical Xor of each cell value

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped