| java.lang.Object org.geotools.coverage.grid.io.AbstractGridCoverageWriter org.geotools.gce.arcgrid.ArcGridWriter
ArcGridWriter | final public class ArcGridWriter extends AbstractGridCoverageWriter implements GridCoverageWriter(Code) | | ArcGridWriter supports writing of an ArcGrid GridCoverage to a
Desination object
XXX We cannot write a rotated grid coverage, we have to enforce that!
author: Daniele Romagnoli author: Simone Giannecchini (simboss) |
Constructor Summary | |
public | ArcGridWriter(Object destination) Takes either a URL or a String that points to an ArcGridCoverage file and
converts it to a URL that can then be written to. | public | ArcGridWriter(Object destination, Hints hints) Takes either a URL or a String that points to an ArcGridCoverage file and
converts it to a URL that can then be written to. |
Method Summary | |
public void | dispose() | static double | getCandidateNoData(GridCoverage2D gc) | public Format | getFormat() Creates a Format object describing the Arc Grid Format
the format of the data source we will write to. | public void | write(GridCoverage coverage, GeneralParameterValue[] parameters) Note: The geotools GridCoverage class does not implement the geoAPI
GridCoverage Interface so this method shows an error. |
ArcGridWriter | public ArcGridWriter(Object destination) throws DataSourceException(Code) | | Takes either a URL or a String that points to an ArcGridCoverage file and
converts it to a URL that can then be written to.
Parameters: destination - the URL or String pointing to the file to load the ArcGrid throws: DataSourceException - |
ArcGridWriter | public ArcGridWriter(Object destination, Hints hints) throws DataSourceException(Code) | | Takes either a URL or a String that points to an ArcGridCoverage file and
converts it to a URL that can then be written to.
Parameters: destination - the URL or String pointing to the file to load the ArcGrid throws: DataSourceException - |
dispose | public void dispose()(Code) | | See Also: org.opengis.coverage.grid.GridCoverageWriter.dispose |
getFormat | public Format getFormat()(Code) | | Creates a Format object describing the Arc Grid Format
the format of the data source we will write to. (ArcGridFormat inthis case) See Also: org.opengis.coverage.grid.GridCoverageWriter.getFormat |
write | public void write(GridCoverage coverage, GeneralParameterValue[] parameters) throws IllegalArgumentException, IOException(Code) | | Note: The geotools GridCoverage class does not implement the geoAPI
GridCoverage Interface so this method shows an error. All other methods
are using the geotools GridCoverage class
See Also: org.opengis.coverage.grid.GridCoverageWriter.write(org.opengis.coverage.grid.GridCoverageorg.opengis.parameter.GeneralParameterValue[]) |
|
|