geotrellis.raster

ConstantTile

trait ConstantTile extends Tile

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConstantTile
  2. Tile
  3. MappableTile
  4. MacroMappableTile
  5. IterableTile
  6. MacroIterableTile
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def cellType: CellType

    Definition Classes
    Tile
  2. abstract def cols: Int

    Definition Classes
    Tile
  3. abstract val dVal: Double

    Attributes
    protected
  4. abstract val iVal: Int

    Attributes
    protected
  5. abstract def mutable: MutableArrayTile

    Create a mutable copy of this tile

    Create a mutable copy of this tile

    Definition Classes
    Tile
  6. abstract def rows: Int

    Definition Classes
    Tile
  7. abstract def toArrayTile(): ArrayTile

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

    Definition Classes
    Tile

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

    Definition Classes
    Any
  7. def asciiDraw(): String

    Return ascii art of this raster.

    Return ascii art of this raster.

    Definition Classes
    Tile
  8. def asciiDrawDouble(significantDigits: Int = Int.MaxValue): String

    Return ascii art of this raster.

    Return ascii art of this raster. The single int parameter indicates the number of significant digits to be printed.

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

    Return ascii art of a range from this raster.

    Return ascii art of a range from this raster.

    Definition Classes
    Tile
  10. def clone(): AnyRef

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

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

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

    Definition Classes
    ConstantTileTile
  14. def crop(srcExtent: Extent, extent: Extent): Tile

    Definition Classes
    Tile
  15. def crop(gb: GridBounds): Tile

    Definition Classes
    Tile
  16. def crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): Tile

    Definition Classes
    Tile
  17. def crop(cols: Int, rows: Int): Tile

    Definition Classes
    Tile
  18. lazy val dimensions: (Int, Int)

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

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

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

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

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

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

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

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

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

    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 (TypeFloat, TypeDouble). Calling findMinMax on rasters of those types will give the integer min and max of the rounded values of their cells.

  28. def findMinMaxDouble: (Double, Double)

    Return tuple of highest and lowest value in raster.

    Return tuple of highest and lowest value in raster.

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

    Definition Classes
    ConstantTileTile
  30. def foreach(f: (Int, Int, Int) ⇒ Unit): Unit

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

    Definition Classes
    ConstantTileTile
  32. def foreachDouble(f: (Int, Int, Double) ⇒ Unit): Unit

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

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

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

    Get value at given coordinates.

    Get value at given coordinates.

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

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

    Get value at given coordinates.

    Get value at given coordinates.

    Definition Classes
    ConstantTileTile
  38. val gridBounds: GridBounds

    Definition Classes
    Tile
  39. def hashCode(): Int

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

    Definition Classes
    Any
  41. def map(f: (Int) ⇒ Int): Tile

    Definition Classes
    ConstantTileTile
  42. def map(f: (Int, Int, Int) ⇒ Int): Tile

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

    Definition Classes
    ConstantTileTile
  44. def mapDouble(f: (Int, Int, Double) ⇒ Double): Tile

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

    Definition Classes
    ConstantTileMacroMappableTile
  46. def mapIfSet(f: (Int) ⇒ Int): Tile

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

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

    Definition Classes
    ConstantTileMacroMappableTile
  49. final def ne(arg0: AnyRef): Boolean

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

    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 mininum value

    oldMax

    Old maximum value

    newMin

    New minimum value

    newMax

    New maximum value

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

    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 mininum value

    oldMax

    Old maximum value

    newMin

    New minimum value

    newMax

    New maximum value

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

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

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

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

    Definition Classes
    Tile
  56. lazy val size: Int

    Definition Classes
    Tile
  57. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

    Definition Classes
    ConstantTileTile
  60. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Tile

Inherited from MappableTile[Tile]

Inherited from MacroMappableTile[Tile]

Inherited from IterableTile

Inherited from MacroIterableTile

Inherited from AnyRef

Inherited from Any

Ungrouped