Trait/Object

geotrellis.raster

ConstantTile

Related Docs: object ConstantTile | package raster

Permalink

trait ConstantTile extends Tile

The trait underlying constant tile types.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConstantTile
  2. Tile
  3. LazyLogging
  4. MappableTile
  5. MacroMappableTile
  6. IterableTile
  7. MacroIterableTile
  8. CellGrid
  9. Grid
  10. Serializable
  11. Serializable
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def cellType: CellType

    Permalink
    Definition Classes
    CellGrid
  2. abstract def cols: Int

    Permalink
    Definition Classes
    Grid
  3. abstract val dVal: Double

    Permalink

    Precomputed view of tile cells as seen by getDouble method

    Precomputed view of tile cells as seen by getDouble method

    Attributes
    protected
  4. abstract val iVal: Int

    Permalink

    Precomputed view of tile cells as seen by get method

    Precomputed view of tile cells as seen by get method

    Attributes
    protected
  5. abstract 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
    ConstantTileTile
  6. abstract 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
    ConstantTileTile
  7. abstract def mutable: MutableArrayTile

    Permalink

    Create a mutable copy of this tile

    Create a mutable copy of this tile

    Definition Classes
    Tile
  8. abstract def rows: Int

    Permalink
    Definition Classes
    Grid
  9. abstract def toArrayTile(): ArrayTile

    Permalink

    Convert the present Tile to an ArrayTile.

    Convert the present Tile to an ArrayTile.

    Definition Classes
    Tile
  10. abstract def toBytes(): Array[Byte]

    Permalink

    Return the data behind this Tile, or a copy, as an Array of bytes.

    Return the data behind this Tile, or a copy, as an Array of bytes.

    Definition Classes
    Tile
  11. abstract def withNoData(noDataValue: Option[Double]): Tile

    Permalink
    Definition Classes
    Tile

Concrete 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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def combine(other: Tile)(f: (Int, Int) ⇒ Int): Tile

    Permalink

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

    Combine two tiles' cells into new cells using the given integer function. For every (x, y) cell coordinate, get each of the tiles' integer 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 (Int, Int) to Int

    returns

    The result, an Tile

    Definition Classes
    ConstantTileTile
  7. def combineDouble(other: Tile)(f: (Double, Double) ⇒ Double): Tile

    Permalink

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

    Combine two tiles' cells into new cells using the given double function. For every (x, y) cell coordinate, get each of the 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 (Int, Int) to Int

    returns

    The result, an Tile

    Definition Classes
    ConstantTileTile
  8. def convert(newType: CellType): Tile

    Permalink

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

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

    newType

    The type of cells that the result should have

    returns

    The new Tile

    Definition Classes
    ConstantTileTile
  9. def dimensions: (Int, Int)

    Permalink
    Definition Classes
    Grid
  10. 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
  11. 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
  12. 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
  13. 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
  14. 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
  15. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. 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.

  19. 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
  20. def foreach(f: (Int) ⇒ Unit): Unit

    Permalink

    Execute a function on each cell of the tile.

    Execute a function on each cell of the tile. The function returns Unit, so it presumably produces side-effects.

    f

    A function from Int to Unit

    Definition Classes
    ConstantTileTile
  21. 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
  22. def foreachDouble(f: (Double) ⇒ Unit): Unit

    Permalink

    Execute a function on each cell of the tile.

    Execute a function on each cell of the tile. The function returns Unit, so it presumably produces side-effects.

    f

    A function from Double to Unit

    Definition Classes
    ConstantTileTile
  23. 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
  24. def foreachDoubleVisitor(visitor: DoubleTileVisitor): Unit

    Permalink

    Execute an DoubleTileVisitor at each cell of the present tile.

    Execute an DoubleTileVisitor at each cell of the present tile.

    visitor

    An DoubleTileVisitor

    Definition Classes
    ConstantTileMacroIterableTile
  25. def foreachIntVisitor(visitor: IntTileVisitor): Unit

    Permalink

    Execute an IntTileVisitor at each cell of the present tile.

    Execute an IntTileVisitor at each cell of the present tile.

    visitor

    An IntTileVisitor

    Definition Classes
    ConstantTileMacroIterableTile
  26. def get(col: Int, row: Int): Int

    Permalink

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

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

    col

    The column

    row

    The row

    returns

    The Int datum found at the given location

    Definition Classes
    ConstantTileTile
  27. final def getClass(): Class[_]

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

    Permalink

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

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

    col

    The column

    row

    The row

    returns

    The Double datum found at the given location

    Definition Classes
    ConstantTileTile
  29. def gridBounds: GridBounds

    Permalink
    Definition Classes
    Grid
  30. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  31. 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
    ConstantTileTile
  32. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  33. def isNoDataTile: Boolean

    Permalink
    Definition Classes
    Tile
  34. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  35. 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
  36. 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
  37. 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
    ConstantTileMacroMappableTile
  38. 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
  39. 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
  40. 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
    ConstantTileMacroMappableTile
  41. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  42. 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
  43. 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
  44. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  46. 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
  47. 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
  48. def size: Int

    Permalink

    The size of the grid, e.g.

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

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

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

    Permalink

    Return the data behind this tile as an array of integers.

    Return the data behind this tile as an array of integers.

    returns

    The copy as an Array[Int]

    Definition Classes
    ConstantTileTile
  51. def toArrayDouble(): Array[Double]

    Permalink

    Return the data behind this tile as an array of doubles.

    Return the data behind this tile as an array of doubles.

    returns

    The copy as an Array[Int]

    Definition Classes
    ConstantTileTile
  52. def toString(): String

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

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

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

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

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