| |
|
| java.lang.Object org.geotools.coverage.grid.io.AbstractGridCoverage2DReader org.geotools.gce.arcgrid.ArcGridReader
ArcGridReader | final public class ArcGridReader extends AbstractGridCoverage2DReader implements GridCoverageReader(Code) | | This class can read an arc grid data source (ArcGrid or GRASS ASCII) and
create a
GridCoverage2D from the data.
author: Daniele Romagnoli, GeoSolutions author: Simone Giannecchini, GeoSolutions since: 2.3.x |
Constructor Summary | |
public | ArcGridReader(Object input) Creates a new instance of an ArcGridReader basing the decision on whether
the file is compressed or not. | public | ArcGridReader(Object input, Hints hints) Creates a new instance of an ArcGridReader basing the decision on whether
the file is compressed or not. |
Method Summary | |
public Format | getFormat() | public GridCoverage | read(GeneralParameterValue[] params) Reads a
GridCoverage2D possibly matching as close as possible the
resolution computed by using the input params provided by using the
parameters for this
ArcGridReader.read(GeneralParameterValue[]) .
To have an idea about the possible read parameters take a look at
AbstractGridFormat class and
ArcGridFormat class.
Parameters: params - an array of GeneralParameterValue containing theparameters to control this read process. |
ArcGridReader | public ArcGridReader(Object input) throws DataSourceException(Code) | | Creates a new instance of an ArcGridReader basing the decision on whether
the file is compressed or not. I assume nothing about file extension.
Parameters: input - Source object for which we want to build an ArcGridReader. throws: DataSourceException - |
ArcGridReader | public ArcGridReader(Object input, Hints hints) throws DataSourceException(Code) | | Creates a new instance of an ArcGridReader basing the decision on whether
the file is compressed or not. I assume nothing about file extension.
Parameters: input - Source object for which we want to build an ArcGridReader. Parameters: hints - Hints to be used by this reader throughout his life. throws: DataSourceException - |
getFormat | public Format getFormat()(Code) | | See Also: org.opengis.coverage.grid.GridCoverageReader.getFormat |
|
|
|