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
Ordering
- Alphabetic
- By Inheritance
Inherited
- RasterReader
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
- abstract def readFully(byteReader: ByteReader, options: O): R
- abstract def readWindow(byteReader: StreamingByteReader, pixelWindow: GridBounds[Int], options: O): R
- abstract def readWindows(gbs: Array[GridBounds[Int]], info: GeoTiffInfo, options: O): Iterator[R]