Packages

trait GeoTiff[T <: CellGrid[Int]] extends GeoTiffData

Base trait of GeoTiff. Takes a tile that is of a type equal to or a subtype of CellGrid

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeoTiff
  2. GeoTiffData
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def buildOverview(resampleMethod: resample.ResampleMethod, decimationFactor: Int, blockSize: Int = GeoTiff.DefaultBlockSize): GeoTiff[T]
  2. abstract val cellType: CellType
    Definition Classes
    GeoTiffData
  3. abstract def copy(tile: T = this.tile, extent: Extent = this.extent, crs: CRS = this.crs, tags: Tags = this.tags, options: GeoTiffOptions = this.options, overviews: List[GeoTiff[T]] = this.overviews): GeoTiff[T]
  4. abstract def crop(windows: Seq[GridBounds[Int]]): Iterator[(GridBounds[Int], T)]
  5. abstract def crop(gridBounds: GridBounds[Int]): GeoTiff[T]
  6. abstract def crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): GeoTiff[T]
  7. abstract def crop(colMax: Int, rowMax: Int): GeoTiff[T]
  8. abstract def crop(subExtent: Extent): GeoTiff[T]
  9. abstract def crop(subExtent: Extent, options: Options): GeoTiff[T]
  10. abstract def crop(subExtent: Extent, cellSize: CellSize, resampleMethod: resample.ResampleMethod, strategy: OverviewStrategy): Raster[T]

    Chooses the best matching overviews and makes resample & crop

  11. abstract def crs: CRS
    Definition Classes
    GeoTiffData
  12. abstract def extent: Extent
    Definition Classes
    GeoTiffData
  13. abstract def imageData: GeoTiffImageData
    Definition Classes
    GeoTiffData
  14. abstract def mapTile(f: (T) ⇒ T): GeoTiff[T]
  15. abstract def options: GeoTiffOptions
    Definition Classes
    GeoTiffData
  16. abstract def overviews: List[GeoTiff[T]]
    Definition Classes
    GeoTiffGeoTiffData
  17. abstract def resample(rasterExtent: RasterExtent, resampleMethod: resample.ResampleMethod, strategy: OverviewStrategy): Raster[T]

    Chooses the best matching overviews and makes resample

  18. abstract def tags: Tags
    Definition Classes
    GeoTiffData
  19. abstract def tile: T
  20. abstract def withOverviews(resampleMethod: resample.ResampleMethod, decimations: List[Int] = Nil, blockSize: Int = GeoTiff.DefaultBlockSize): GeoTiff[T]
  21. abstract def withStorageMethod(storageMethod: StorageMethod): GeoTiff[T]

Concrete Value Members

  1. def bandCount: Int
  2. def cellSize: CellSize
  3. def cols: Int
  4. def crop(rasterExtent: RasterExtent): Raster[T]
  5. def crop(subExtent: Extent, cellSize: CellSize): Raster[T]
  6. def getClosestOverview(cellSize: CellSize, strategy: OverviewStrategy = OverviewStrategy.DEFAULT): GeoTiff[T]

    Return the best matching overview to the given cellSize, returns "this" if no overviews available.

  7. def getOverview(idx: Int): GeoTiff[T]
  8. def getOverviewsCount: Int
  9. def pixelSampleType: Option[PixelSampleType]
    Definition Classes
    GeoTiffData
  10. def projectedExtent: ProjectedExtent
  11. def projectedRaster: ProjectedRaster[T]
  12. def raster: Raster[T]
  13. def rasterExtent: RasterExtent
  14. def rows: Int
  15. def toByteArray: Array[Byte]
  16. def toCloudOptimizedByteArray: Array[Byte]
  17. def withOverviews(overviews: Seq[GeoTiff[T]]): GeoTiff[T]
  18. def write(path: String, optimizedOrder: Boolean = false): Unit