Class

software.uncharted.salt.core.generation.output

SeriesData

Related Doc: package output

Permalink

class SeriesData[TC, BC, V, X] extends Serializable

A thin wrapper class for the output of a tile generation, for a single Series

TC

the abstract type representing a tile coordinate.

BC

the abstract type representing a bin coordinate. Must be something that can be represented in 1 dimension.

V

Output data type for bin aggregators, and input for tile aggregator

X

Output data type for tile aggregators

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SeriesData
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SeriesData(projection: Projection[_, TC, BC], maxBin: BC, coords: TC, bins: SparseArray[V], tileMeta: Option[X])

    Permalink

    coords

    the tile coordinates for this aggregator

    bins

    the output values of bin aggregators

    tileMeta

    the output value of the tile aggregator

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(bin: BC): V

    Permalink

    Retrieve a value from this SeriesData's bins using a bin coordinate

    Retrieve a value from this SeriesData's bins using a bin coordinate

    bin

    A bin coordinate

    returns

    the corresponding value

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val bins: SparseArray[V]

    Permalink

    the output values of bin aggregators

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val coords: TC

    Permalink

    the tile coordinates for this aggregator

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

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  15. val maxBin: BC

    Permalink
  16. def merge[OV, OX, NV, NX](other: SeriesData[TC, BC, OV, OX], binMerge: (V, OV) ⇒ NV, tileMetaMerge: Option[(X, OX) ⇒ NX] = None)(implicit arg0: ClassTag[NV]): SeriesData[TC, BC, NV, NX]

    Permalink

    Combine this SeriesData with another congruent one.

    Combine this SeriesData with another congruent one. Congruent SeriesData have an identical tile coordinate and the same bin dimensions. The new SeriesData will inherit this SeriesData's Projection.

    OV

    other's bin value type

    OX

    other's tile metadata type

    NV

    output bin value type

    NX

    output tile metadata type

    other

    the SeriesData to merge with

    binMerge

    the function for merging bin values

    tileMetaMerge

    the Optional function for merging tile metadata

    Annotations
    @throws( classOf[SeriesDataMergeException] )
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. val projection: Projection[_, TC, BC]

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

    Permalink
    Definition Classes
    AnyRef
  22. val tileMeta: Option[X]

    Permalink

    the output value of the tile aggregator

  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped