org.geotools.coverage.io |
package org.geotools.coverage.io
Helper classes for coverage reader implementations.
{@link org.geotools.coverage.io.AbstractGridCoverageReader} is the base class for any object
capable to read a {@link org.geotools.coverage.grid.GridCoverage2D} object.
Sometime, remote sensing data are not contained in a single file.
For example it is common to find sample values in a raw binary file (a flat matrix),
and metadata informations in a separated text file. There is a wide variety of formats
for such text file, and supporting them is not always straightforward.
{@link org.geotools.coverage.io.MetadataBuilder} is a helper class for making
easier to parse the header file. The content (the actual pixel values) can be parsed using
the {@link org.geotools.image.io} package.
|
Java Source File Name | Type | Comment |
AbstractGridCoverageReader.java | Class | Base class for reading
GridCoverage objects. |
AmbiguousMetadataException.java | Class | Thrown when one or more metadata have ambiguous values. |
ExoreferencedGridCoverageReader.java | Class | An implementation of
AbstractGridCoverageReader using informations parsed by a
MetadataBuilder object. |
GridCoverageExamples.java | Class | A factory for sample
GridCoverage2D , which may be used for tests
in other modules. |
GridCoverageReader.java | Interface | Interface for reading
GridCoverage objects. |
MetadataBuilder.java | Class | Helper class for creating OpenGIS's object from a set of metadata. |
MetadataBuilderTest.java | Class | Tests the
MetadataBuilder implementation. |
MetadataException.java | Class | The base class for error related to grid coverage's metadata. |
MissingMetadataException.java | Class | Thrown when a metadata is required but can't be found. |