o

geotrellis.geotools

GridCoverage2DConverters

object GridCoverage2DConverters

Houses methods that aide the translate between GridCoverage2D and related GeoTools types, and GeoTrellis types.

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

Value Members

  1. val authorityFactory: CRSAuthorityFactory

    Create an authority factory which generates CRSs with Longitude guranteed to the be first coordinate.

  2. def convertToGridCoverage2D(tile: MultibandTile, extent: Extent, crs: Option[CRS]): GridCoverage2D
  3. def convertToGridCoverage2D(raster: ProjectedRaster[MultibandTile])(implicit d: DummyImplicit): GridCoverage2D
  4. def convertToGridCoverage2D(raster: ProjectedRaster[Tile]): GridCoverage2D
  5. def convertToGridCoverage2D(raster: Raster[MultibandTile], crs: CRS)(implicit d: DummyImplicit): GridCoverage2D
  6. def convertToGridCoverage2D(raster: Raster[Tile], crs: CRS): GridCoverage2D
  7. def convertToGridCoverage2D(raster: Raster[MultibandTile])(implicit d: DummyImplicit): GridCoverage2D
  8. def convertToGridCoverage2D(raster: Raster[Tile]): GridCoverage2D
  9. def convertToMultibandTile(gridCoverage: GridCoverage2D): MultibandTile
  10. def convertToTile(gridCoverage: GridCoverage2D, bandIndex: Int): Tile
  11. def getCellType(gridCoverage: GridCoverage2D): CellType

    Given a GridCoverage2D and an index, this function return the Geotrellis CellType that best approximates that of the given layer.

  12. def getCrs(gridCoverage: GridCoverage2D): Option[CRS]

    This function extracts a Geotrellis CRS from the CRS information stored in the given GridCoverage2D.

    This function extracts a Geotrellis CRS from the CRS information stored in the given GridCoverage2D.

    gridCoverage

    The GeoTools GridCoverage2D object

  13. def getEnvelope2D(extent: Extent, crs: CRS): Envelope2D

    A function to produce a GeoTools Envelope2D from a Geotrellis Extent and CRS.

    A function to produce a GeoTools Envelope2D from a Geotrellis Extent and CRS. If the CRS cannot be converted, a null GeoTools CRS is used.

    extent

    The Geotrellis Extent

    crs

    The CRS of the raster

    returns

    A GeoTools Envelope2D

  14. def getEnvelope2D(extent: Extent): Envelope2D

    A function to produce a GeoTools Envelope2D from a Geotrellis Extent and CRS.

    A function to produce a GeoTools Envelope2D from a Geotrellis Extent and CRS.

    extent

    The Geotrellis Extent

    returns

    A GeoTools Envelope2D

  15. def getExtent(gridCoverage: GridCoverage2D): Extent

    This function extracts a Geotrellis Extent from the extent information stored in the given GridCoverage2D.

    This function extracts a Geotrellis Extent from the extent information stored in the given GridCoverage2D.

    gridCoverage

    The GeoTools GridCoverage2D object

  16. def getGeotoolsCRS(crs: CRS): CoordinateReferenceSystem
  17. def getNoData(gridCoverage: GridCoverage2D): Option[Double]

    Given a GridCoverage2D and an index, this function optionally produces the unique NODATA value.

  18. def getValueRange(cellType: CellType): (Double, Double)