Packages

trait RasterReader[-O, R] extends Serializable

Type class to read a raster either fully or partially from a ByteReader. This abstracts over the different ways to represent a GeoTiff values and different ways to key it.

Option object is a type parameter such that novel ways of GeoTiff parsing can be provided by the user.

O

Options type that is used to configure the raster reading

R

Result of reading the raster bytes either fully or as a pixel window

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RasterReader
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def readFully(byteReader: ByteReader, options: O): R
  2. abstract def readWindow(byteReader: StreamingByteReader, pixelWindow: GridBounds[Int], options: O): R
  3. abstract def readWindows(gbs: Array[GridBounds[Int]], info: GeoTiffInfo, options: O): Iterator[R]