final case class GDALDataset(token: Long) extends AnyVal with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GDALDataset
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyVal
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GDALDataset(token: Long)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bandCount(datasetType: DatasetType): Int
  6. def bandCount: Int
  7. def cellSize(transform: Array[Double]): CellSize
  8. def cellSize(datasetType: DatasetType): CellSize

    https://github.com/mapbox/rasterio/blob/1.2b1/rasterio/_base.pyx#L865-L895

    https://github.com/mapbox/rasterio/blob/1.2b1/rasterio/_base.pyx#L865-L895

    Note for a reader: affine.Affine(a, b, c, d, e, f) GDALTransform(c, a, b, f, d, e)

    See https://rasterio.readthedocs.io/en/latest/topics/migrating-to-v1.html?highlight=Affine#affine-affine-vs-gdal-style-geotransforms

  9. def cellSize: CellSize
  10. def cellType(datasetType: DatasetType): CellType
  11. def cellType: CellType
  12. def crs(datasetType: DatasetType): CRS
  13. def crs: CRS
  14. def dataType(datasetType: DatasetType): Int
  15. def dataType: Int
  16. def dimensions(datasetType: DatasetType): Dimensions[Int]
  17. def dimensions: Dimensions[Int]
  18. def extent(transform: Array[Double], cols: Int, rows: Int): Extent

    Compute extent, takes into account a possible rotation.

    Compute extent, takes into account a possible rotation.

    https://github.com/mapbox/rasterio/blob/1.2b1/rasterio/_base.pyx#L865-L895

    Note for a reader: affine.Affine(a, b, c, d, e, f) GDALTransform(c, a, b, f, d, e)

    https://gdal.org/user/raster_data_model.html#affine-geotransform https://github.com/mapbox/rasterio/blob/1.2b1/rasterio/_base.pyx#L865-L895

  19. def extent(datasetType: DatasetType): Extent
  20. def extent: Extent
  21. def getAllMetadata(datasetType: DatasetType, band: Int): Map[GDALMetadataDomain, Map[String, String]]
  22. def getAllMetadata(band: Int): Map[GDALMetadataDomain, Map[String, String]]
  23. def getAllMetadataFlatten(datasetType: DatasetType): Map[String, String]
  24. def getAllMetadataFlatten: Map[String, String]
  25. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  26. def getMetadata(datasetType: DatasetType, domain: GDALMetadataDomain, band: Int): Map[String, String]
  27. def getMetadata(domain: GDALMetadataDomain, band: Int): Map[String, String]
  28. def getMetadata(datasetType: DatasetType, domains: List[GDALMetadataDomain], band: Int): Map[GDALMetadataDomain, Map[String, String]]
  29. def getMetadata(domains: List[GDALMetadataDomain], band: Int): Map[GDALMetadataDomain, Map[String, String]]
  30. def getMetadataDomainList(datasetType: DatasetType, band: Int): List[GDALMetadataDomain]

    https://github.com/OSGeo/gdal/blob/b1c9c12ad373e40b955162b45d704070d4ebf7b0/gdal/doc/source/development/rfc/rfc43_getmetadatadomainlist.rst

  31. def getMetadataDomainList(band: Int): List[GDALMetadataDomain]
  32. def getMetadataItem(datasetType: DatasetType, key: String, domain: GDALMetadataDomain, band: Int): String
  33. def getMetadataItem(key: String, domain: GDALMetadataDomain, band: Int): String
  34. def getProjection(datasetType: DatasetType): Option[String]
  35. def getProjection: Option[String]
  36. def getTransform(datasetType: DatasetType): Array[Double]
  37. def getTransform: Array[Double]
  38. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  39. def noDataValue(datasetType: DatasetType): Option[Double]
  40. def noDataValue: Option[Double]
  41. def overviewDimensions(datasetType: DatasetType): List[Dimensions[Int]]
  42. def overviewDimensions: List[Dimensions[Int]]
  43. def rasterExtent(datasetType: DatasetType): RasterExtent

    Even though GeoTrellis doesn't support rotation fully, we still can properly compute the Dataset Extent.

    Even though GeoTrellis doesn't support rotation fully, we still can properly compute the Dataset Extent.

    https://gdal.org/user/raster_data_model.html#affine-geotransform https://github.com/mapbox/rasterio/blob/1.2b1/rasterio/_base.pyx#L865-L895 Previous revision code reference: https://github.com/locationtech/geotrellis/blob/v3.5.1/gdal/src/main/scala/geotrellis/raster/gdal/GDALDataset.scala#L128

  44. def rasterExtent: RasterExtent
  45. def readMultibandRaster(gb: GridBounds[Int] = GridBounds(dimensions), bands: Seq[Int] = 1 to bandCount, datasetType: DatasetType = GDALDataset.WARPED): Raster[MultibandTile]
  46. def readMultibandTile(gb: GridBounds[Int] = GridBounds(dimensions), bands: Seq[Int] = 1 to bandCount, datasetType: DatasetType = GDALDataset.WARPED): MultibandTile
  47. def readTile(gb: GridBounds[Int] = GridBounds(dimensions), band: Int, datasetType: DatasetType = GDALDataset.WARPED): Tile
  48. def resolutions(datasetType: DatasetType): List[RasterExtent]
  49. def resolutions: List[RasterExtent]
  50. val token: Long

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyVal

Inherited from Any

Ungrouped