Class

geotrellis.raster

DoubleUserDefinedNoDataArrayTile

Related Doc: package raster

Permalink

final case class DoubleUserDefinedNoDataArrayTile(arr: Array[Double], cols: Int, rows: Int, cellType: DoubleUserDefinedNoDataCellType) extends DoubleArrayTile with UserDefinedDoubleNoDataConversions with Product with Serializable

The DoubleUserDefinedNoDataArrayTile, derived from DoubleArrayTile.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DoubleUserDefinedNoDataArrayTile
  2. Product
  3. Equals
  4. UserDefinedDoubleNoDataConversions
  5. DoubleArrayTile
  6. MutableArrayTile
  7. ArrayTile
  8. Tile
  9. LazyLogging
  10. MappableTile
  11. MacroMappableTile
  12. IterableTile
  13. MacroIterableTile
  14. CellGrid
  15. Grid
  16. Serializable
  17. Serializable
  18. AnyRef
  19. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DoubleUserDefinedNoDataArrayTile(arr: Array[Double], cols: Int, rows: Int, cellType: DoubleUserDefinedNoDataCellType)

    Permalink

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(i: Int): Int

    Permalink

    Fetch the datum at the given index in the array.

    Fetch the datum at the given index in the array.

    i

    The index

    returns

    The Double datum found at the index

    Definition Classes
    DoubleUserDefinedNoDataArrayTileArrayTile
  5. def applyDouble(i: Int): Double

    Permalink

    Fetch the datum at the given index in the array.

    Fetch the datum at the given index in the array.

    i

    The index

    returns

    The Double datum found at the index

    Definition Classes
    DoubleUserDefinedNoDataArrayTileArrayTile
  6. val arr: Array[Double]

    Permalink
  7. val array: Array[Double]

    Permalink
    Definition Classes
    DoubleArrayTile
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def b2udd(n: Byte): Double

    Permalink
  10. val cellType: DoubleUserDefinedNoDataCellType

    Permalink
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val cols: Int

    Permalink
    Definition Classes
    DoubleUserDefinedNoDataArrayTileGrid
  13. def combine(other: Tile)(f: (Int, Int) ⇒ Int): Tile

    Permalink

    Combine the cells of an ArrayTile and a Tile into a new Tile using the given function.

    Combine the cells of an ArrayTile and a Tile into a new Tile using the given function. For every (x, y) cell coordinate, get each of the Tiles' integer value, map them to a new value, and assign it to the output's (x, y) cell.

    other

    The other Tile

    f

    A function from (Int, Int) to Int

    returns

    The result, an Tile

    Definition Classes
    ArrayTileTile
  14. def combine(other: ArrayTile)(f: (Int, Int) ⇒ Int): ArrayTile

    Permalink

    Combine two ArrayTiles' cells into new cells using the given integer function.

    Combine two ArrayTiles' cells into new cells using the given integer function. For every (x, y) cell coordinate, get each of the ArrayTiles' integer values, map them to a new value, and assign it to the output's (x, y) cell.

    other

    The other ArrayTile

    f

    A function from (Int, Int) to Int

    returns

    The result, an ArrayTile

    Definition Classes
    ArrayTile
  15. def combineDouble(other: Tile)(f: (Double, Double) ⇒ Double): Tile

    Permalink

    Combine the cells of an ArrayTile and a Tile into a new Tile using the given function.

    Combine the cells of an ArrayTile and a Tile into a new Tile using the given function. For every (x, y) cell coordinate, get tiles' double values, map them to a new value, and assign it to the output's (x, y) cell.

    other

    The other Tile

    f

    A function from (Double, Double) to Double

    returns

    The result, an Tile

    Definition Classes
    ArrayTileTile
  16. def combineDouble(other: ArrayTile)(f: (Double, Double) ⇒ Double): ArrayTile

    Permalink

    Combine two ArrayTiles' cells into new cells using the given double function.

    Combine two ArrayTiles' cells into new cells using the given double function. For every (x, y) cell coordinate, get each of the ArrayTiles' double values, map them to a new value, and assign it to the output's (x, y) cell.

    other

    The other ArrayTile

    f

    A function from (Double, Double) to Double

    returns

    The result, an ArrayTile

    Definition Classes
    ArrayTile
  17. def convert(targetCellType: CellType): ArrayTile

    Permalink

    Returns a Tile equivalent to this ArrayTile, except with cells of the given type.

    Returns a Tile equivalent to this ArrayTile, except with cells of the given type.

    targetCellType

    The type of cells that the result should have

    returns

    The new Tile

    Definition Classes
    ArrayTileTile
  18. def copy: ArrayTile

    Permalink

    Return a copy of the present DoubleArrayTile.

    Return a copy of the present DoubleArrayTile.

    returns

    The copy

    Definition Classes
    DoubleArrayTileArrayTile
  19. def d2udd(n: Double): Double

    Permalink
  20. def dimensions: (Int, Int)

    Permalink
    Definition Classes
    Grid
  21. def downsample(newCols: Int, newRows: Int)(f: (CellSet) ⇒ Int): Tile

    Permalink

    Reduce the resolution of the present Tile to the given number of columns and rows.

    Reduce the resolution of the present Tile to the given number of columns and rows. A new Tile is returned.

    newCols

    The number of columns in the new Tile

    newRows

    The number of rows in the new Tile

    Definition Classes
    Tile
  22. def dualCombine(r2: Tile)(f: (Int, Int) ⇒ Int)(g: (Double, Double) ⇒ Double): Tile

    Permalink

    Combine two Tiles together using one of two given functions.

    Combine two Tiles together using one of two given functions. If the union of the types of the two cells is floating-point, then the floating function is used, otherwise the integer function is used.

    r2

    The tile to combine with the present one

    f

    The integer function

    g

    The double function

    Definition Classes
    Tile
  23. def dualForeach(f: (Int) ⇒ Unit)(g: (Double) ⇒ Unit): Unit

    Permalink

    Execute a function at each pixel of a Tile.

    Execute a function at each pixel of a Tile. Two functions are given: an integer version which is used if the tile is an integer-tile, and the other in the case of a floating-tile.

    f

    A function from Int to Unit

    g

    A function from Double to Unit

    Definition Classes
    Tile
  24. def dualMap(f: (Int) ⇒ Int)(g: (Double) ⇒ Double): Tile

    Permalink

    Map one of the two given functions across the Tile to produce a new one.

    Map one of the two given functions across the Tile to produce a new one. One of the functions is from Int to Int, and the other from Double to Double.

    f

    A function from Int to Int

    g

    A function from Double to Double

    Definition Classes
    Tile
  25. def dualMapIfSet(f: (Int) ⇒ Int)(g: (Double) ⇒ Double): Tile

    Permalink

    Conditionally map across the Tile with one of two functions, depending on whether the tile is an integer- or a floating-tile.

    Conditionally map across the Tile with one of two functions, depending on whether the tile is an integer- or a floating-tile. A pixel is mapped only if it is set.

    f

    A function from Int to Int

    g

    A function from Double to Double

    Definition Classes
    Tile
  26. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. def equals(other: Any): Boolean

    Permalink

    Check for equality between the present ArrayTile and any other object.

    Check for equality between the present ArrayTile and any other object.

    other

    The other object

    returns

    A boolean

    Definition Classes
    ArrayTile → AnyRef → Any
  28. def f2udd(n: Float): Double

    Permalink
  29. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def findMinMax: (Int, Int)

    Permalink

    Return tuple of highest and lowest value in raster.

    Return tuple of highest and lowest value in raster.

    Definition Classes
    Tile
    Note

    Currently does not support double valued raster data types (FloatConstantNoDataCellType, DoubleConstantNoDataCellType). Calling findMinMax on rasters of those types will give the integer min and max of the rounded values of their cells.

  31. def findMinMaxDouble: (Double, Double)

    Permalink

    Return tuple of highest and lowest value in raster.

    Return tuple of highest and lowest value in raster.

    Definition Classes
    Tile
  32. def foreach(f: (Int) ⇒ Unit): Unit

    Permalink

    Execute a function on each cell of the ArrayTile.

    Execute a function on each cell of the ArrayTile.

    f

    A function from Int to Unit. Presumably, the function is executed for side-effects.

    Definition Classes
    ArrayTileTile
  33. macro def foreach(f: (Int, Int, Int) ⇒ Unit): Unit

    Permalink

    Execute the given function 'f' at every location in the tile.

    Execute the given function 'f' at every location in the tile. The function 'f' takes the column, row, and value and returns nothing (presumably for side-effects).

    Definition Classes
    IterableTile
  34. def foreachDouble(f: (Double) ⇒ Unit): Unit

    Permalink

    Execute a function on each cell of the ArrayTile.

    Execute a function on each cell of the ArrayTile.

    f

    A function from Double to Unit. Presumably, the function is executed for side-effects.

    Definition Classes
    ArrayTileTile
  35. macro def foreachDouble(f: (Int, Int, Double) ⇒ Unit): Unit

    Permalink

    Execute the given function 'f' at every location in the tile.

    Execute the given function 'f' at every location in the tile. The function 'f' takes the column, row, and value, the last one as a double, and returns nothing (presumably for side-effects).

    Definition Classes
    IterableTile
  36. def foreachDoubleVisitor(visitor: DoubleTileVisitor): Unit

    Permalink

    Execute an DoubleTileVisitor at each cell of the ArrayTile.

    Execute an DoubleTileVisitor at each cell of the ArrayTile.

    visitor

    A DoubleTileVisitor

    Definition Classes
    ArrayTileMacroIterableTile
  37. def foreachIntVisitor(visitor: IntTileVisitor): Unit

    Permalink

    Execute an IntTileVisitor at each cell of the ArrayTile.

    Execute an IntTileVisitor at each cell of the ArrayTile.

    visitor

    An IntTileVisitor

    Definition Classes
    ArrayTileMacroIterableTile
  38. def get(col: Int, row: Int): Int

    Permalink

    Fetch the datum at the given column and row of the ArrayTile.

    Fetch the datum at the given column and row of the ArrayTile.

    col

    The column

    row

    The row

    returns

    The Int datum found at the given location

    Definition Classes
    ArrayTileTile
  39. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  40. def getDouble(col: Int, row: Int): Double

    Permalink

    Fetch the datum at the given column and row of the ArrayTile.

    Fetch the datum at the given column and row of the ArrayTile.

    col

    The column

    row

    The row

    returns

    The Double datum found at the given location

    Definition Classes
    ArrayTileTile
  41. def gridBounds: GridBounds

    Permalink
    Definition Classes
    Grid
  42. def i2udd(n: Int): Double

    Permalink
  43. def interpretAs(newCellType: CellType): Tile

    Permalink

    Changes the interpretation of the tile cells through changing NoData handling and optionally cell data type.

    Changes the interpretation of the tile cells through changing NoData handling and optionally cell data type. If DataType portion of the CellType is unchanged the tile data is not duplicated through conversion. If cell DataType conversion is required it is done in a naive way, without considering NoData handling.

    newCellType

    CellType to be used in interpreting existing cells

    Definition Classes
    DoubleArrayTileArrayTileTile
  44. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  45. def isNoDataTile: Boolean

    Permalink
    Definition Classes
    Tile
  46. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  47. def map(f: (Int) ⇒ Int): Tile

    Permalink

    Map each cell in the given tile to a new one, using the given function.

    Map each cell in the given tile to a new one, using the given function.

    f

    A function from Int to Int, executed at each point of the tile

    returns

    The result, a Tile

    Definition Classes
    ArrayTileTile
  48. macro def map(f: (Int, Int, Int) ⇒ Int): Tile

    Permalink

    Map over the tiles using a function which accepts the column, row, and value at that position and returns an integer.

    Map over the tiles using a function which accepts the column, row, and value at that position and returns an integer.

    Definition Classes
    MappableTile
  49. def mapDouble(f: (Double) ⇒ Double): Tile

    Permalink

    Map each cell in the given tile to a new one, using the given function.

    Map each cell in the given tile to a new one, using the given function.

    f

    A function from Double to Double, executed at each point of the tile

    returns

    The result, a Tile

    Definition Classes
    ArrayTileTile
  50. macro def mapDouble(f: (Int, Int, Double) ⇒ Double): Tile

    Permalink

    Map over the tiles using a function which accepts the column, row, and value at that position and returns a double.

    Map over the tiles using a function which accepts the column, row, and value at that position and returns a double.

    Definition Classes
    MappableTile
  51. def mapDoubleMapper(mapper: DoubleTileMapper): Tile

    Permalink

    Map an DoubleTileMapper over the present tile.

    Map an DoubleTileMapper over the present tile.

    mapper

    The mapper

    returns

    The result, a Tile

    Definition Classes
    ArrayTileMacroMappableTile
  52. def mapIfSet(f: (Int) ⇒ Int): Tile

    Permalink

    Conditionally execute (or don't) the given function at each pixel of a Tile, depending on whether that pixel is NODATA or not.

    Conditionally execute (or don't) the given function at each pixel of a Tile, depending on whether that pixel is NODATA or not. The result of the mapping is returned as a tile.

    f

    A function from Int to Int

    Definition Classes
    Tile
  53. def mapIfSetDouble(f: (Double) ⇒ Double): Tile

    Permalink

    Conditionally execute (or don't) the given function at each pixel of a Tile, depending on whether that pixel is NODATA or not.

    Conditionally execute (or don't) the given function at each pixel of a Tile, depending on whether that pixel is NODATA or not. The result of the mapping is returned as a tile.

    f

    A function from Double to Double

    Definition Classes
    Tile
  54. def mapIntMapper(mapper: IntTileMapper): Tile

    Permalink

    Map an IntTileMapper over the present tile.

    Map an IntTileMapper over the present tile.

    mapper

    The mapper

    returns

    The result, a Tile

    Definition Classes
    ArrayTileMacroMappableTile
  55. def mutable: MutableArrayTile

    Permalink

    Create a mutable copy of this tile

    Create a mutable copy of this tile

    Definition Classes
    MutableArrayTileTile
  56. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  57. def normalize(oldMin: Double, oldMax: Double, newMin: Double, newMax: Double): Tile

    Permalink

    Normalizes the values of this raster, given the current min and max, to a new min and max.

    Normalizes the values of this raster, given the current min and max, to a new min and max.

    oldMin

    Old minimum value

    oldMax

    Old maximum value

    newMin

    New minimum value

    newMax

    New maximum value

    Definition Classes
    Tile
  58. def normalize(oldMin: Int, oldMax: Int, newMin: Int, newMax: Int): Tile

    Permalink

    Normalizes the values of this raster, given the current min and max, to a new min and max.

    Normalizes the values of this raster, given the current min and max, to a new min and max.

    oldMin

    Old minimum value

    oldMax

    Old maximum value

    newMin

    New minimum value

    newMax

    New maximum value

    Definition Classes
    Tile
  59. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  61. def rescale(newMin: Double, newMax: Double): Tile

    Permalink

    Rescale the values in this Tile so that they are between the two given values.

    Rescale the values in this Tile so that they are between the two given values.

    Definition Classes
    Tile
  62. def rescale(newMin: Int, newMax: Int): Tile

    Permalink

    Rescale the values in this Tile so that they are between the two given values.

    Rescale the values in this Tile so that they are between the two given values.

    Definition Classes
    Tile
  63. val rows: Int

    Permalink
    Definition Classes
    DoubleUserDefinedNoDataArrayTileGrid
  64. def s2udd(n: Short): Double

    Permalink
  65. def set(col: Int, row: Int, value: Int): Unit

    Permalink

    Set the value of the raster at the given column and row with the given value.

    Set the value of the raster at the given column and row with the given value.

    col

    The column

    row

    The row

    value

    The value

    Definition Classes
    MutableArrayTile
  66. def setDouble(col: Int, row: Int, value: Double): Unit

    Permalink

    Set the value of the raster at the given column and row with the given value.

    Set the value of the raster at the given column and row with the given value.

    col

    The column

    row

    The row

    value

    The value

    Definition Classes
    MutableArrayTile
  67. def size: Int

    Permalink

    The size of the grid, e.g.

    The size of the grid, e.g. cols * rows.

    Definition Classes
    Grid
  68. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  69. def toArray(): Array[Int]

    Permalink

    Return a copy of the underlying array of the present ArrayTile.

    Return a copy of the underlying array of the present ArrayTile.

    returns

    The copy as an Array[Int]

    Definition Classes
    ArrayTileTile
  70. def toArrayDouble(): Array[Double]

    Permalink

    Return a copy of the underlying array of the present ArrayTile.

    Return a copy of the underlying array of the present ArrayTile.

    returns

    The copy as an Array[Double]

    Definition Classes
    DoubleArrayTileArrayTileTile
  71. def toArrayTile(): ArrayTile

    Permalink

    Return the ArrayTile equivalent of this ArrayTile.

    Return the ArrayTile equivalent of this ArrayTile.

    returns

    The object on which the method was invoked

    Definition Classes
    ArrayTileTile
  72. def toBytes(): Array[Byte]

    Permalink

    Convert the present DoubleArrayTile to an array of bytes and return that array.

    Convert the present DoubleArrayTile to an array of bytes and return that array.

    returns

    An array of bytes

    Definition Classes
    DoubleArrayTileTile
  73. def toList: List[Int]

    Permalink

    Return the underlying array of this ArrayTile as a list.

    Return the underlying array of this ArrayTile as a list.

    returns

    The list

    Definition Classes
    ArrayTile
  74. def toListDouble: List[Double]

    Permalink

    Return the under-laying array of this ArrayTile as a list.

    Return the under-laying array of this ArrayTile as a list.

    returns

    The list

    Definition Classes
    ArrayTile
  75. def ub2udd(n: Byte): Double

    Permalink
  76. def udd2b(n: Double): Byte

    Permalink
  77. def udd2d(n: Double): Double

    Permalink
  78. def udd2f(n: Double): Float

    Permalink
  79. def udd2i(n: Double): Int

    Permalink
  80. def udd2s(n: Double): Short

    Permalink
  81. def udd2ub(n: Double): Byte

    Permalink
  82. def udd2us(n: Double): Short

    Permalink
  83. def update(i: Int, z: Int): Unit

    Permalink

    Update the datum at the given index in the array.

    Update the datum at the given index in the array.

    i

    The index

    z

    The value to place at that index

    Definition Classes
    DoubleUserDefinedNoDataArrayTileMutableArrayTile
  84. def update(colOffset: Int, rowOffset: Int, update: Tile): Unit

    Permalink

    Paste the given Tile into the present one starting at the given column and row offsets.

    Paste the given Tile into the present one starting at the given column and row offsets.

    colOffset

    The column offset

    rowOffset

    The row offset

    update

    The source tile

    Definition Classes
    MutableArrayTile
  85. def updateDouble(i: Int, z: Double): Unit

    Permalink

    Update the datum at the given index in the array.

    Update the datum at the given index in the array.

    i

    The index

    z

    The value to place at that index

    Definition Classes
    DoubleUserDefinedNoDataArrayTileMutableArrayTile
  86. def us2udd(n: Short): Double

    Permalink
  87. val userDefinedDoubleNoDataValue: Double

    Permalink
  88. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. def withNoData(noDataValue: Option[Double]): Tile

    Permalink
    Definition Classes
    DoubleArrayTileArrayTileTile

Inherited from Product

Inherited from Equals

Inherited from DoubleArrayTile

Inherited from MutableArrayTile

Inherited from ArrayTile

Inherited from Tile

Inherited from LazyLogging

Inherited from MappableTile[Tile]

Inherited from MacroMappableTile[Tile]

Inherited from IterableTile

Inherited from MacroIterableTile

Inherited from CellGrid

Inherited from Grid

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped