| java.lang.Object org.geotools.coverage.grid.io.AbstractGridCoverage2DReader org.geotools.gce.geotiff.GeoTiffReader
GeoTiffReader | final public class GeoTiffReader extends AbstractGridCoverage2DReader implements GridCoverageReader(Code) | | this class is responsible for exposing the data and the Georeferencing
metadata available to the Geotools library. This reader is heavily based on
the capabilities provided by the ImageIO tools and JAI libraries.
author: Bryce Nordgren, USDA Forest Service author: Simone Giannecchini since: 2.1 |
Method Summary | |
public Format | getFormat() | public GeoTiffIIOMetadataDecoder | getMetadata() Returns the geotiff metadata for this geotiff file. | public GridCoverage | read(GeneralParameterValue[] params) This method reads in the TIFF image, constructs an appropriate CRS,
determines the math transform from raster to the CRS model, and
constructs a GridCoverage.
Parameters: params - currently ignored, potentially may be used for hints. |
getFormat | public Format getFormat()(Code) | | See Also: org.opengis.coverage.grid.GridCoverageReader.getFormat |
read | public GridCoverage read(GeneralParameterValue[] params) throws IOException(Code) | | This method reads in the TIFF image, constructs an appropriate CRS,
determines the math transform from raster to the CRS model, and
constructs a GridCoverage.
Parameters: params - currently ignored, potentially may be used for hints. grid coverage represented by the image throws: IOException - on any IO related troubles |
|
|