geotrellis

raster

package raster

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. raster
  2. Implicits
  3. Implicits
  4. Implicits
  5. Implicits
  6. Implicits
  7. Implicits
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class ArrayMultibandTile extends MultibandTile with MacroMultibandCombiners

    The ArrayMultibandTile type.

  2. trait ArrayTile extends Tile with Serializable

    ArrayTile provides access and update to the grid data of a raster.

  3. final case class BitArrayTile(array: Array[Byte], cols: Int, rows: Int) extends MutableArrayTile with Product with Serializable

    ArrayTile based on an Array[Byte] as a bitmask; values are 0 and 1.

  4. sealed trait BitCells extends DataType

    The BitCells type, derived from DataType

  5. case class BitConstantTile(v: Boolean, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The BitConstantTile type.

  6. implicit final class ByteArrayFiller extends AnyVal

  7. abstract class ByteArrayTile extends MutableArrayTile

    ArrayTile based on Array[Byte] (each cell as a Byte).

  8. sealed trait ByteCells extends DataType

    The ByteCells type, derived from DataType

  9. final case class ByteConstantNoDataArrayTile(arr: Array[Byte], cols: Int, rows: Int) extends ByteArrayTile with Product with Serializable

    A ByteConstantNoDataArrayTile, created from the given array, with the given number of columns and rows.

  10. case class ByteConstantTile(v: Byte, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The ByteConstantTile type.

  11. final case class ByteRawArrayTile(arr: Array[Byte], cols: Int, rows: Int) extends ByteArrayTile with Product with Serializable

    A ByteRawArrayTile, created from the given array, with the given number of columns and rows.

  12. final case class ByteUserDefinedNoDataArrayTile(arr: Array[Byte], cols: Int, rows: Int, cellType: ByteUserDefinedNoDataCellType) extends ByteArrayTile with UserDefinedByteNoDataConversions with Product with Serializable

    A ByteUserDefinedNoDataArrayTile, created from the given array, with the given number of columns and rows.

  13. case class ByteUserDefinedNoDataCellType(noDataValue: Byte) extends DataType with ByteCells with UserDefinedNoData[Byte] with Product with Serializable

  14. trait CellGrid extends Serializable

    The trait from which Tiles are derived.

  15. trait CellSet extends AnyRef

    A lighweight wrapper around performing foreach calculations on a set of cell coordinates

  16. case class CellSize(width: Double, height: Double) extends Product with Serializable

    A case class containing the width and height of a cell.

  17. type CellType = DataType with NoDataHandling

  18. case class CompositeTile(tiles: Seq[Tile], tileLayout: TileLayout) extends Tile with Product with Serializable

    The CompositeTile type.

  19. sealed trait Connectivity extends AnyRef

    An encoding of the connectivity of vector tiles.

  20. sealed trait ConstantNoData extends NoDataHandling

    The ConstantNoData type, derived from NoDataHandling.

  21. trait ConstantTile extends Tile

    The trait underlying constant tile types.

  22. case class CroppedTile(sourceTile: Tile, gridBounds: GridBounds) extends Tile with Product with Serializable

    The CroppedTile type.

  23. type DI = DummyImplicit

  24. sealed abstract class DataType extends Serializable

    CellType defined in package object as type CellType = DataType with NoDataHandling.

  25. implicit final class DoubleArrayFiller extends AnyVal

  26. abstract class DoubleArrayTile extends MutableArrayTile

    ArrayTile based on Array[Double] (each cell as a Double).

  27. sealed trait DoubleCells extends DataType

    The DoubleCells type, derived from DataType

  28. final case class DoubleConstantNoDataArrayTile(arr: Array[Double], cols: Int, rows: Int) extends DoubleArrayTile with Product with Serializable

    The DoubleConstantNoDataArrayTile, derived from DoubleArrayTile.

  29. case class DoubleConstantTile(v: Double, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The DoubleConstantTile type.

  30. case class DoubleKernelStamper(cellType: CellType, cols: Int, rows: Int, k: Kernel) extends KernelStamper with Product with Serializable

    A KernelStamper for double-valued tiles.

  31. final case class DoubleRawArrayTile(arr: Array[Double], cols: Int, rows: Int) extends DoubleArrayTile with Product with Serializable

    The DoubleRawArrayTile, derived from DoubleArrayTile.

  32. type DoubleTileMapper = macros.DoubleTileMapper

  33. type DoubleTileVisitor = macros.DoubleTileVisitor

  34. 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.

  35. case class DoubleUserDefinedNoDataCellType(noDataValue: Double) extends DataType with DoubleCells with UserDefinedNoData[Double] with Product with Serializable

  36. implicit final class FloatArrayFiller extends AnyVal

  37. abstract class FloatArrayTile extends MutableArrayTile

    ArrayTile based on Array[Float] (each cell as a Float).

  38. sealed trait FloatCells extends DataType

  39. final case class FloatConstantNoDataArrayTile(arr: Array[Float], cols: Int, rows: Int) extends FloatArrayTile with Product with Serializable

    The FloatConstantNoDataArrayTile derived from FloatArrayTile.

  40. case class FloatConstantTile(v: Float, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The FloatConstantTile type.

  41. final case class FloatRawArrayTile(arr: Array[Float], cols: Int, rows: Int) extends FloatArrayTile with Product with Serializable

    The FloatRawArrayTile derived from FloatArrayTile.

  42. final case class FloatUserDefinedNoDataArrayTile(arr: Array[Float], cols: Int, rows: Int, cellType: FloatUserDefinedNoDataCellType) extends FloatArrayTile with UserDefinedFloatNoDataConversions with Product with Serializable

    The FloatUserDefinedNoDataArrayTile derived from FloatArrayTile.

  43. case class FloatUserDefinedNoDataCellType(noDataValue: Float) extends DataType with FloatCells with UserDefinedNoData[Float] with Product with Serializable

  44. case class GeoAttrsError(msg: String) extends Exception with Product with Serializable

    GeoAttrsError exception.

  45. case class GridBounds(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int) extends Product with Serializable

    Represents grid coordinates of a subsection of a RasterExtent.

  46. trait GridDefinition extends AnyRef

  47. case class GridExtent(extent: Extent, cellwidth: Double, cellheight: Double) extends GridDefinition with Product with Serializable

    The GridExtent type.

  48. implicit class HillshadeTuple extends AnyRef

    Definition Classes
    Implicits
  49. implicit final class IntArrayFiller extends AnyVal

  50. abstract class IntArrayTile extends MutableArrayTile

    ArrayTile based on Array[Int] (each cell as an Int).

  51. sealed trait IntCells extends DataType

    The IntCells type, derived from DataType

  52. final case class IntConstantNoDataArrayTile(arr: Array[Int], cols: Int, rows: Int) extends IntArrayTile with Product with Serializable

    The IntConstantNoDataArrayTile derived from IntArrayTile.

  53. case class IntConstantTile(v: Int, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The IntConstantTile type.

  54. case class IntKernelStamper(cellType: CellType, cols: Int, rows: Int, k: Kernel) extends KernelStamper with Product with Serializable

    A KernelStamper for integer-valued tiles.

  55. final case class IntRawArrayTile(arr: Array[Int], cols: Int, rows: Int) extends IntArrayTile with Product with Serializable

    The IntRawArrayTile derived from IntArrayTile.

  56. type IntTileMapper = macros.IntTileMapper

  57. type IntTileVisitor = macros.IntTileVisitor

  58. final case class IntUserDefinedNoDataArrayTile(arr: Array[Int], cols: Int, rows: Int, cellType: IntUserDefinedNoDataCellType) extends IntArrayTile with UserDefinedIntNoDataConversions with Product with Serializable

    The IntUserDefinedNoDataArrayTile derived from IntArrayTile.

  59. case class IntUserDefinedNoDataCellType(noDataValue: Int) extends DataType with IntCells with UserDefinedNoData[Int] with Product with Serializable

  60. trait IterableTile extends MacroIterableTile

    Trait to supply foreach(|Double) methods.

  61. trait KernelStamper extends AnyRef

    Supplies functionality to operations that do convolution.

  62. trait MacroGeotiffMultibandCombiners extends AnyRef

  63. trait MacroMultibandCombiners extends AnyRef

  64. trait MappableTile[T <: MappableTile[T]] extends MacroMappableTile[T]

    The MappableTile trait.

  65. type MultibandRaster = Raster[MultibandTile]

  66. trait MultibandTile extends CellGrid with MacroCombinableMultibandTile[Tile] with MacroCombineFunctions[Tile, MultibandTile]

  67. trait MutableArrayTile extends ArrayTile

    MutableArrayTile is an ArrayTile whose cells can be written to (mutated).

  68. sealed trait NoDataHandling extends AnyRef

    The NoDataHandling.

  69. sealed trait NoNoData extends NoDataHandling

    The NoNoData type, derived from NoDataHandling.

  70. sealed abstract class PixelSampleType extends AnyRef

    The base class for the two concrete PixelSampleTypes.

  71. case class ProjectedRaster[T <: CellGrid](raster: Raster[T], crs: CRS) extends Product with Serializable

    The ProjectedRaster type.

  72. case class Raster[+T <: CellGrid](tile: T, extent: Extent) extends Product2[T, Extent] with Product with Serializable

    The Raster type.

  73. case class RasterExtent(extent: Extent, cellwidth: Double, cellheight: Double, cols: Int, rows: Int) extends GridDefinition with Product with Serializable

    RasterExtent objects represent the geographic extent (envelope) of a raster.

  74. abstract class SegmentCombiner extends AnyRef

    This trait is how subclasses define the necessary pieces that allow us to abstract over each of the combine functions

  75. implicit final class ShortArrayFiller extends AnyVal

  76. abstract class ShortArrayTile extends MutableArrayTile

    ArrayTile based on Array[Short] (each cell as a Short).

  77. sealed trait ShortCells extends DataType

    The ShortCells type, derived from DataType

  78. final case class ShortConstantNoDataArrayTile(arr: Array[Short], cols: Int, rows: Int) extends ShortArrayTile with Product with Serializable

    ShortConstantNoDataArrayTile derived from ShortArrayTile.

  79. case class ShortConstantTile(v: Short, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The ShortConstantTile type.

  80. final case class ShortRawArrayTile(arr: Array[Short], cols: Int, rows: Int) extends ShortArrayTile with Product with Serializable

    ShortRawArrayTile derived from ShortArrayTile.

  81. final case class ShortUserDefinedNoDataArrayTile(arr: Array[Short], cols: Int, rows: Int, cellType: ShortUserDefinedNoDataCellType) extends ShortArrayTile with UserDefinedShortNoDataConversions with Product with Serializable

    ShortUserDefinedNoDataArrayTile derived from ShortArrayTile.

  82. case class ShortUserDefinedNoDataCellType(noDataValue: Short) extends DataType with ShortCells with UserDefinedNoData[Short] with Product with Serializable

  83. type SinglebandRaster = Raster[Tile]

  84. implicit class SinglebandRasterAnyRefMethods extends AnyRef

  85. trait Tile extends CellGrid with IterableTile with MappableTile[Tile]

    Base trait for a Tile.

  86. case class TileExtents(extent: Extent, tileLayout: TileLayout) extends Product with Serializable

    The TileExtents type.

  87. case class TileLayout(layoutCols: Int, layoutRows: Int, tileCols: Int, tileRows: Int) extends Product with Serializable

  88. implicit class TileTupleExtensions extends AnyRef

  89. implicit class TraversableTileExtensions extends AnyRef

  90. abstract class UByteArrayTile extends MutableArrayTile

    ArrayTile based on Array[Byte] (each cell as a Byte).

  91. sealed trait UByteCells extends DataType

    The UByteCells type, derived from DataType

  92. final case class UByteConstantNoDataArrayTile(arr: Array[Byte], cols: Int, rows: Int) extends UByteArrayTile with Product with Serializable

    UByteConstantNoDataArrayTile derived from UByteArrayTile.

  93. case class UByteConstantTile(v: Byte, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The UByteConstantTile type.

  94. final case class UByteRawArrayTile(arr: Array[Byte], cols: Int, rows: Int) extends UByteArrayTile with Product with Serializable

    UByteRawArrayTile derived from UByteArrayTile.

  95. final case class UByteUserDefinedNoDataArrayTile(arr: Array[Byte], cols: Int, rows: Int, cellType: UByteUserDefinedNoDataCellType) extends UByteArrayTile with UserDefinedByteNoDataConversions with Product with Serializable

    UByteUserDefinedNoDataArrayTile derived from UByteArrayTile.

  96. case class UByteUserDefinedNoDataCellType(noDataValue: Byte) extends DataType with UByteCells with UserDefinedNoData[Byte] with Product with Serializable

  97. abstract class UShortArrayTile extends MutableArrayTile

    ArrayTile based on Array[Short] (each cell as a Short).

  98. sealed trait UShortCells extends DataType

    The UShortCells type, derived from DataType

  99. class UShortConstantNoDataArrayTile extends UShortArrayTile

    UShortConstantNoDataArrayTile derived from UShortArrayTile.

  100. case class UShortConstantTile(v: Short, cols: Int, rows: Int) extends ConstantTile with Product with Serializable

    The UShortConstantTile type.

  101. class UShortRawArrayTile extends UShortArrayTile

    UShortRawArrayTile derived from UShortArrayTile.

  102. class UShortUserDefinedNoDataArrayTile extends UShortArrayTile with UserDefinedShortNoDataConversions

    UShortUserDefinedNoDataArrayTile derived from UShortArrayTile.

  103. case class UShortUserDefinedNoDataCellType(noDataValue: Short) extends DataType with UShortCells with UserDefinedNoData[Short] with Product with Serializable

  104. trait UserDefinedByteNoDataConversions extends AnyRef

  105. trait UserDefinedDoubleNoDataConversions extends AnyRef

  106. trait UserDefinedFloatNoDataConversions extends AnyRef

  107. trait UserDefinedIntNoDataConversions extends AnyRef

  108. sealed trait UserDefinedNoData[T] extends NoDataHandling

    The UserDefinedNoData type, derived from NoDataHandling.

  109. trait UserDefinedShortNoDataConversions extends AnyRef

  110. implicit class withExtentCropMethods[T <: CellGrid] extends RasterCropMethods[T]

    Definition Classes
    Implicits
  111. implicit class withFeatureDoubleRasterizeMethods extends MethodExtensions[Feature[Geometry, Double]] with FeatureDoubleRasterizeMethods[Geometry]

  112. implicit class withFeatureIntRasterizeMethods extends MethodExtensions[Feature[Geometry, Int]] with FeatureIntRasterizeMethods[Geometry]

  113. implicit class withGeometryRasterizeMethods extends MethodExtensions[Geometry] with GeometryRasterizeMethods

  114. implicit class withMultibandRasterMethods extends MethodExtensions[MultibandRaster] with MultibandRasterReprojectMethods with MultibandRasterResampleMethods

  115. implicit class withMultibandTileMethods extends MethodExtensions[MultibandTile] with MultibandTileCropMethods with MultibandTileMaskMethods with MultibandTileMergeMethods with MultibandTilePrototypeMethods with MultibandTileReprojectMethods with MultibandJpgRenderMethods with MultibandColorMethods with MultibandPngRenderMethods with MultibandTileResampleMethods with MultibandTileSplitMethods

  116. implicit class withProjectedRasterReprojectMethods[T <: CellGrid] extends ProjectedRasterReprojectMethods[T]

    Definition Classes
    Implicits
  117. implicit class withRasterExtentRasterizeMethods extends MethodExtensions[RasterExtent] with RasterExtentRasterizeMethods[RasterExtent]

  118. implicit class withRasterExtentSplitMethods extends RasterExtentSplitMethods

    Definition Classes
    Implicits
  119. implicit class withRasterMaskMethods[T <: CellGrid] extends RasterMaskMethods[T]

    Definition Classes
    Implicits
  120. implicit class withRasterMergeMethods[T <: CellGrid] extends RasterMergeMethods[T]

    Definition Classes
    Implicits
  121. implicit class withRasterSplitMethods[T <: CellGrid] extends RasterSplitMethods[T]

    Definition Classes
    Implicits
  122. implicit class withSinglebandRasterMethods extends MethodExtensions[SinglebandRaster] with SinglebandRasterReprojectMethods with SinglebandRasterResampleMethods with SinglebandRasterVectorizeMethods

  123. implicit class withTileMethods extends MethodExtensions[Tile] with CostDistanceMethods with SinglebandTileCropMethods with HydrologyMethods with SinglebandTileMaskMethods with SinglebandTileMergeMethods with LocalMethods with FocalMethods with ZonalMethods with HillshadeMethods with SinglebandTilePrototypeMethods with RegionGroupMethods with ColorMethods with JpgRenderMethods with PngRenderMethods with SinglebandTileReprojectMethods with SinglebandTileResampleMethods with SinglebandTileSplitMethods with SummaryMethods with PolygonalSummaryMethods with ViewshedMethods with VectorizeMethods

  124. implicit class withTileSeqMethods extends MethodExtensions[Traversable[Tile]] with LocalSeqMethods

Value Members

  1. object ArrayMultibandTile extends Serializable

    The companion object for the ArrayMultibandTile type.

  2. object ArrayTile extends Serializable

    An object housing apply methods which produce ArrayTiles.

  3. object BitArrayTile extends Serializable

    The companion object for the BitArrayTile type.

  4. object BitCellType extends DataType with BitCells with NoNoData with Product with Serializable

    The BitCellType type, derived from BitCells and NoNoData.

  5. object BitConstantTile extends Serializable

    The companion object for the BitConstantTile type.

  6. object ByteArrayTile extends Serializable

    The companion object for the ByteArrayTile type.

  7. object ByteCellType extends DataType with ByteCells with NoNoData with Product with Serializable

  8. object ByteConstantNoDataCellType extends DataType with ByteCells with ConstantNoData with Product with Serializable

  9. object CellSize extends Serializable

    The companion object for the CellSize type.

  10. object CellType

  11. object CompositeTile extends Serializable

    The companion object for the CompositeTile type.

  12. object CroppedTile extends Serializable

    The companion object for the CroppedTile type.

  13. object DoubleArrayTile extends Serializable

    The companion object for the DoubleArrayTile type.

  14. object DoubleCellType extends DataType with DoubleCells with NoNoData with Product with Serializable

  15. object DoubleConstantNoDataCellType extends DataType with DoubleCells with ConstantNoData with Product with Serializable

  16. object EightNeighbors extends Connectivity with Product with Serializable

    Eight-way connectivity.

  17. object FloatArrayTile extends Serializable

    The companion object for the FloatArrayTile type.

  18. object FloatCellType extends DataType with FloatCells with NoNoData with Product with Serializable

  19. object FloatConstantNoDataCellType extends DataType with FloatCells with ConstantNoData with Product with Serializable

  20. object FourNeighbors extends Connectivity with Product with Serializable

    Four-way connectivity.

  21. object GridBounds extends Serializable

    The companion object for the GridBounds type.

  22. object GridExtent extends Serializable

    The companion object for the GridExtent type.

  23. object IntArrayTile extends Serializable

    The companion object for the IntArray type.

  24. object IntCellType extends DataType with IntCells with NoNoData with Product with Serializable

  25. object IntConstantNoDataCellType extends DataType with IntCells with ConstantNoData with Product with Serializable

  26. object KernelStamper

    The companion object for the KernelStamper trait.

  27. object MultibandTile extends Serializable

  28. final val NODATA: Int(-2147483648)

  29. object PixelIsArea extends PixelSampleType with Product with Serializable

    Type encoding the fact that pixels should be treated as suitably-tiny extents.

  30. object PixelIsPoint extends PixelSampleType with Product with Serializable

    Type encoding the fact that pixels should be treated as points.

  31. object ProjectedRaster extends Serializable

    The companion object for the ProjectedRaster type.

  32. object Raster extends Serializable

    The companion object for the Raster type.

  33. object RasterExtent extends Serializable

    The companion object for the RasterExtent type.

  34. object RawArrayTile

    An object housing apply methods which produce RawArrayTiles.

  35. object ShortArrayTile extends Serializable

    The companion object associated with the ShortArrayTile type.

  36. object ShortCellType extends DataType with ShortCells with NoNoData with Product with Serializable

  37. object ShortConstantNoDataCellType extends DataType with ShortCells with ConstantNoData with Product with Serializable

  38. object TileLayout extends Serializable

    The companion object associated with the TileLayout type.

  39. object UByteArrayTile extends Serializable

    The companion object for the UByteArrayTile type.

  40. object UByteCellType extends DataType with UByteCells with NoNoData with Product with Serializable

  41. object UByteConstantNoDataCellType extends DataType with UByteCells with ConstantNoData with Product with Serializable

  42. object UShortArrayTile extends Serializable

    The companion object associated with the UShortArrayTile type.

  43. object UShortCellType extends DataType with UShortCells with NoNoData with Product with Serializable

  44. object UShortConstantNoDataCellType extends DataType with UShortCells with ConstantNoData with Product with Serializable

  45. object VectorToRaster

    Object that holds various functions for vector-to-raster computations.

  46. def b2d(n: Byte): Double

    Annotations
    @macroImpl( ... )
  47. def b2f(n: Byte): Float

    Annotations
    @macroImpl( ... )
  48. def b2i(n: Byte): Int

    Annotations
    @macroImpl( ... )
  49. def b2s(n: Byte): Short

    Annotations
    @macroImpl( ... )
  50. def b2ub(n: Byte): Byte

    Annotations
    @macroImpl( ... )
  51. def b2us(n: Byte): Short

    Annotations
    @macroImpl( ... )
  52. final val byteNODATA: Byte(-128)

  53. package costdistance

  54. package crop

  55. def d2b(n: Double): Byte

    Annotations
    @macroImpl( ... )
  56. def d2f(n: Double): Float

    Annotations
    @macroImpl( ... )
  57. def d2i(n: Double): Int

    Annotations
    @macroImpl( ... )
  58. def d2s(n: Double): Short

    Annotations
    @macroImpl( ... )
  59. def d2ub(n: Double): Byte

    Annotations
    @macroImpl( ... )
  60. def d2us(n: Double): Short

    Annotations
    @macroImpl( ... )
  61. final val doubleNODATA: Double(NaN)

  62. def f2b(n: Float): Byte

    Annotations
    @macroImpl( ... )
  63. def f2d(n: Float): Double

    Annotations
    @macroImpl( ... )
  64. def f2i(n: Float): Int

    Annotations
    @macroImpl( ... )
  65. def f2s(n: Float): Short

    Annotations
    @macroImpl( ... )
  66. def f2ub(n: Float): Byte

    Annotations
    @macroImpl( ... )
  67. def f2us(n: Float): Short

    Annotations
    @macroImpl( ... )
  68. final val floatNODATA: Float(NaN)

  69. package histogram

  70. package hydrology

  71. def i2b(n: Int): Byte

    Annotations
    @macroImpl( ... )
  72. def i2d(n: Int): Double

    Annotations
    @macroImpl( ... )
  73. def i2f(n: Int): Float

    Annotations
    @macroImpl( ... )
  74. def i2s(n: Int): Short

    Annotations
    @macroImpl( ... )
  75. def i2ub(n: Int): Byte

    Annotations
    @macroImpl( ... )
  76. def i2us(n: Int): Short

    Annotations
    @macroImpl( ... )
  77. package interpolation

  78. package io

  79. def isData(d: Double): Boolean

    Annotations
    @macroImpl( ... )
  80. def isData(f: Float): Boolean

    Annotations
    @macroImpl( ... )
  81. def isData(i: Int): Boolean

    Annotations
    @macroImpl( ... )
  82. def isNoData(d: Double): Boolean

    Annotations
    @macroImpl( ... )
  83. def isNoData(f: Float): Boolean

    Annotations
    @macroImpl( ... )
  84. def isNoData(i: Int): Boolean

    Annotations
    @macroImpl( ... )
  85. package mapalgebra

  86. package mask

  87. package merge

  88. package prototype

  89. package rasterize

  90. package regiongroup

  91. package render

  92. package reproject

  93. package resample

  94. def s2b(n: Short): Byte

    Annotations
    @macroImpl( ... )
  95. def s2d(n: Short): Double

    Annotations
    @macroImpl( ... )
  96. def s2f(n: Short): Float

    Annotations
    @macroImpl( ... )
  97. def s2i(n: Short): Int

    Annotations
    @macroImpl( ... )
  98. def s2ub(n: Short): Byte

    Annotations
    @macroImpl( ... )
  99. def s2us(n: Short): Short

    Annotations
    @macroImpl( ... )
  100. final val shortNODATA: Short(-32768)

  101. package split

  102. package stitch

  103. package summary

  104. def ub2b(n: Byte): Byte

    Annotations
    @macroImpl( ... )
  105. def ub2d(n: Byte): Double

    Annotations
    @macroImpl( ... )
  106. def ub2f(n: Byte): Float

    Annotations
    @macroImpl( ... )
  107. def ub2i(n: Byte): Int

    Annotations
    @macroImpl( ... )
  108. def ub2s(n: Byte): Short

    Annotations
    @macroImpl( ... )
  109. def ub2us(n: Byte): Short

    Annotations
    @macroImpl( ... )
  110. final val ubyteNODATA: Byte

  111. def us2b(n: Short): Byte

    Annotations
    @macroImpl( ... )
  112. def us2d(n: Short): Double

    Annotations
    @macroImpl( ... )
  113. def us2f(n: Short): Float

    Annotations
    @macroImpl( ... )
  114. def us2i(n: Short): Int

    Annotations
    @macroImpl( ... )
  115. def us2s(n: Short): Short

    Annotations
    @macroImpl( ... )
  116. def us2ub(n: Short): Byte

    Annotations
    @macroImpl( ... )
  117. final val ushortNODATA: Short

  118. package vectorize

  119. package viewshed

Inherited from Implicits

Inherited from Implicits

Inherited from Implicits

Inherited from Implicits

Inherited from Implicits

Inherited from Implicits

Inherited from AnyRef

Inherited from Any

Ungrouped