Package com.luciad.ogc.wcs.client
Class TLcdWCSGeoTiffCoverageTileDecoder
java.lang.Object
com.luciad.ogc.wcs.client.TLcdWCSGeoTiffCoverageTileDecoder
- All Implemented Interfaces:
ILcdWCSCoverageTileDecoder
Deprecated.
A WCS GetCoverage decoder that will be used by the WCS framework to decode GeoTIFF data as tiles.
Tiles are of the legacy raster API, so you are encouraged to use
TLcdGeoTIFFWCSCoverageDecoder instead.- Since:
- 8.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanDecodeCoverage(String aOutputFormat) Deprecated.Determines if this decoder can decode coverages that are provided in the specified output format.decodeCoverage(String aOutputFormat, String aContentType, InputStream aContent, TLcdWCSGetCoverageRequest aRequest) Deprecated.Decodes a coverage response to a tile.
-
Constructor Details
-
TLcdWCSGeoTiffCoverageTileDecoder
public TLcdWCSGeoTiffCoverageTileDecoder()Deprecated.
-
-
Method Details
-
canDecodeCoverage
Deprecated.Description copied from interface:ILcdWCSCoverageTileDecoderDetermines if this decoder can decode coverages that are provided in the specified output format. The value of output format is the value that will be sent to the WCS in theGetCoveragerequest.- Specified by:
canDecodeCoveragein interfaceILcdWCSCoverageTileDecoder- Parameters:
aOutputFormat- the output format- Returns:
- true if the specified output format is supported; false otherwise
-
decodeCoverage
public ILcdTile decodeCoverage(String aOutputFormat, String aContentType, InputStream aContent, TLcdWCSGetCoverageRequest aRequest) throws IOException Deprecated.Description copied from interface:ILcdWCSCoverageTileDecoderDecodes a coverage response to a tile.- Specified by:
decodeCoveragein interfaceILcdWCSCoverageTileDecoder- Parameters:
aOutputFormat- the output format that was used in theGetCoveragerequestaContentType- the mime-type of the returned data. This value is optional and may be null or an empty stringaContent- an inputstream containing the response dataaRequest- theGetCoveragerequest- Returns:
- a tile containing the decoded coverage data
- Throws:
IOException- if an error occurs while processing the response data
-
TLcdGeoTIFFWCSCoverageDecoderinstead.