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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bandCount: Int
  6. def cellSize: CellSize
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def cols: Int
  9. def crop(rasterExtent: RasterExtent): Raster[T]
  10. def crop(subExtent: Extent, cellSize: CellSize): Raster[T]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. 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.

  16. def getOverview(idx: Int): GeoTiff[T]
  17. def getOverviewsCount: Int
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def pixelSampleType: Option[PixelSampleType]
    Definition Classes
    GeoTiffData
  24. def projectedExtent: ProjectedExtent
  25. def projectedRaster: ProjectedRaster[T]
  26. def raster: Raster[T]
  27. def rasterExtent: RasterExtent
  28. def rows: Int
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toByteArray: Array[Byte]
  31. def toCloudOptimizedByteArray: Array[Byte]
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. def withOverviews(overviews: Seq[GeoTiff[T]]): GeoTiff[T]
  37. def write(path: String, optimizedOrder: Boolean = false): Unit

Inherited from GeoTiffData

Inherited from AnyRef

Inherited from Any

Ungrouped