geotrellis

GenRaster

class GenRaster [T] extends Serializable

Attributes
final
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. GenRaster
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GenRaster (data: GenRasterData[T], rasterExtent: RasterExtent, name: String)(implicit arg0: Numeric[T], arg1: Manifest[T], arg2: NoData[T])

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. def asArray : Array[T]

    Return data in this raster as a one-dimensional array (row by row).

  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. def asciiDraw (): String

    Return ascii art of this raster.

  9. def asciiDrawRange (colMin: Int, colMax: Int, rowMin: Int, rowMax: Int): String

    Return ascii art of a range from this raster.

  10. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def cols : Int

  12. def combine2 (r2: GenRaster[T])(f: (T, T) ⇒ T): GenRaster[T]

  13. def compare (other: GenRaster[T]): Int

    Test RasterExtent of other raster w/ our own geographic attributes.

  14. def copy (): GenRaster[T]

    Clone this raster.

  15. val data : GenRasterData[T]

  16. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  17. def equals (other: Any): Boolean

    Definition Classes
    GenRaster → AnyRef → Any
  18. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def findMinMax : (T, T)

    Return tuple of highest and lowest value in raster.

  20. def foreach (f: (T) ⇒ Unit): Unit

  21. def get (col: Int, row: Int): T

    Get value at given coordinates.

  22. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  23. def hashCode (): Int

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

    Attributes
    final
    Definition Classes
    Any
  25. def length : Int

  26. def map (f: (T) ⇒ T): GenRaster[T]

  27. def mapIfSet (f: (T) ⇒ T): GenRaster[T]

    Convenience version of 'map' which skips nodata values.

    Convenience version of 'map' which skips nodata values. For instance:

    r.mapIfSet(x => x + 2)

    is equivalent to:

    r.map(x => if (x == nodata) x else x + 2)

  28. val name : String

  29. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  30. val nodata : T

    Attributes
    final
  31. def normalize (zmin: T, zmax: T, gmin: T, gmax: T): GenRaster[T]

  32. def normalize (gmin: T, gmax: T): GenRaster[T]

  33. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  34. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  35. val rasterExtent : RasterExtent

  36. def rows : Int

  37. def set (col: Int, row: Int, value: T): Unit

    Set value at given coordinates.

  38. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  39. def toString (): String

    Definition Classes
    GenRaster → AnyRef → Any
  40. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any