| org.deegree.model.coverage.grid.GridCoverageReader
All known Subclasses: org.deegree.model.coverage.grid.AbstractGridCoverageReader,
dispose | void dispose() throws IOException(Code) | | Allows any resources held by this object to be released. The result of calling any other
method subsequent to a call to this method is undefined. It is important for applications to
call this method when they know they will no longer be using this
GridCoverageReader . Otherwise, the reader may continue to hold on to
resources indefinitely.
throws: IOException - if an error occured while disposing resources (for example while closing a file). |
getCurrentSubname | String getCurrentSubname() throws IOException(Code) | | the name for the next grid coverage to be from the. throws: IOException - if an error occurs during reading. |
getFormat | Format getFormat()(Code) | | the format handled by this GridCoverageReader . |
getMetadataNames | String[] getMetadataNames() throws IOException(Code) | | Returns the list of metadata keywords associated with the
as a whole (not associated with any particular grid coverage). If no metadata is
available, the array will be empty.
The list of metadata keywords for the input source. throws: IOException - if an error occurs during reading. |
listSubNames | String[] listSubNames() throws IOException(Code) | | Retrieve the list of grid coverages contained within the
. Each grid can have a different coordinate system, number of dimensions and grid
geometry. For example, a HDF-EOS file (GRID.HDF) contains 6 grid coverages each having a
different projection. An empty array will be returned if no sub names exist.
The list of grid coverages contained within the input source. throws: IOException - if an error occurs during reading. |
setCurrentSubname | void setCurrentSubname(String name) throws IOException(Code) | | Parameters: name - for the next grid coverage to within the. The subname can been fetch later at readingtime. throws: IOException - if an error occurs during writing. |
|
|