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
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canDecodeCoverage
(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:ILcdWCSCoverageTileDecoder
Determines 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 theGetCoverage
request.- Specified by:
canDecodeCoverage
in 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:ILcdWCSCoverageTileDecoder
Decodes a coverage response to a tile.- Specified by:
decodeCoverage
in interfaceILcdWCSCoverageTileDecoder
- Parameters:
aOutputFormat
- the output format that was used in theGetCoverage
requestaContentType
- 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
- theGetCoverage
request- Returns:
- a tile containing the decoded coverage data
- Throws:
IOException
- if an error occurs while processing the response data
-
TLcdGeoTIFFWCSCoverageDecoder
instead.