geotrellis.raster.io.geotiff

Float32GeoTiffTile

class Float32GeoTiffTile extends GeoTiffTile with Float32GeoTiffSegmentCollection

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Float32GeoTiffTile
  2. Float32GeoTiffSegmentCollection
  3. GeoTiffSegmentCollection
  4. GeoTiffTile
  5. GeoTiffImageData
  6. Tile
  7. MappableTile
  8. MacroMappableTile
  9. IterableTile
  10. MacroIterableTile
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Float32GeoTiffTile(compressedBytes: Array[Array[Byte]], decompressor: Decompressor, segmentLayout: GeoTiffSegmentLayout, compression: Compression, noDataValue: Option[Double])

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. val bandCount: Int

    Definition Classes
    GeoTiffTileGeoTiffImageData
  11. val bandType: Float32BandType.type

  12. val cellType: TypeFloat.type

  13. def clone(): AnyRef

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

    Definition Classes
    GeoTiffTileGeoTiffImageDataTile
  15. def combine(other: Tile)(f: (Int, Int) ⇒ Int): Tile

    Definition Classes
    GeoTiffTileTile
  16. def combineDouble(other: Tile)(f: (Double, Double) ⇒ Double): Tile

    Definition Classes
    GeoTiffTileTile
  17. val compressedBytes: Array[Array[Byte]]

  18. def convert(newCellType: CellType): Tile

    Definition Classes
    GeoTiffTileTile
  19. val createSegment: (Int) ⇒ Float32GeoTiffSegment

  20. def crop(srcExtent: Extent, extent: Extent): Tile

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

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

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

    Definition Classes
    Tile
  24. val decompressor: Decompressor

  25. lazy val dimensions: (Int, Int)

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    GeoTiffTileTile
  37. def foreach(f: (Int, Int, Int) ⇒ Unit): Unit

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

    Definition Classes
    GeoTiffTileTile
  39. def foreachDouble(f: (Int, Int, Double) ⇒ Unit): Unit

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

    Definition Classes
    GeoTiffTileMacroIterableTile
  41. def foreachIntVisitor(visitor: IntTileVisitor): Unit

    Definition Classes
    GeoTiffTileMacroIterableTile
  42. def get(col: Int, row: Int): Int

    Get value at given coordinates.

    Get value at given coordinates.

    Definition Classes
    GeoTiffTileTile
  43. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  44. def getDecompressedBytes(i: Int): Array[Byte]

    Definition Classes
    GeoTiffSegmentCollection
  45. def getDouble(col: Int, row: Int): Double

    Get value at given coordinates.

    Get value at given coordinates.

    Definition Classes
    GeoTiffTileTile
  46. def getSegment(i: Int): T

    Definition Classes
    GeoTiffSegmentCollection
  47. val gridBounds: GridBounds

    Definition Classes
    Tile
  48. def hashCode(): Int

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

    Definition Classes
    Any
  50. def map(f: (Int) ⇒ Int): GeoTiffTile

    Definition Classes
    GeoTiffTileTile
  51. def map(f: (Int, Int, Int) ⇒ Int): Tile

    Definition Classes
    MappableTile
  52. def mapDouble(f: (Double) ⇒ Double): GeoTiffTile

    Definition Classes
    GeoTiffTileTile
  53. def mapDouble(f: (Int, Int, Double) ⇒ Double): Tile

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

    Definition Classes
    GeoTiffTileMacroMappableTile
  55. def mapIfSet(f: (Int) ⇒ Int): Tile

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

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

    Definition Classes
    GeoTiffTileMacroMappableTile
  58. def mutable: MutableArrayTile

    Create a mutable copy of this tile

    Create a mutable copy of this tile

    Definition Classes
    Float32GeoTiffTileGeoTiffTileTile
  59. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  60. val noDataValue: Option[Double]

  61. 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
  62. 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
  63. final def notify(): Unit

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

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

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

    Definition Classes
    Tile
  67. val rows: Int

    Definition Classes
    GeoTiffTileGeoTiffImageDataTile
  68. val segmentCount: Int

    Definition Classes
    GeoTiffTile
  69. lazy val size: Int

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

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

    Definition Classes
    GeoTiffTileTile
  72. def toArrayDouble(): Array[Double]

    Definition Classes
    GeoTiffTileTile
  73. def toArrayTile(): ArrayTile

    Definition Classes
    GeoTiffTileTile
  74. def toBytes(): Array[Byte]

    Definition Classes
    GeoTiffTileTile
  75. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from GeoTiffSegmentCollection

Inherited from GeoTiffTile

Inherited from GeoTiffImageData

Inherited from Tile

Inherited from MappableTile[Tile]

Inherited from MacroMappableTile[Tile]

Inherited from IterableTile

Inherited from MacroIterableTile

Inherited from AnyRef

Inherited from Any

Ungrouped