public interface WCS
WFS service interface.
WCS (Web Coverage Service) is one of the OGC (Open GIS Consortium) standards. WCS is a specification that OGC defines to share geospatial data in the form of "coverage" on the Web. The so-called "Coverage" refers to the data that can return the value of any specified point in its space-time domain, which is easy to enter into the model. The WCS service implements the sharing of the raster image datasets in the form of "Coverage".
SuperMap iServer currently provides the following WCS operations:
Modifier and Type | Method and Description |
---|---|
java.util.List<CoverageDescription> |
describeCoverage(java.lang.String identifiers)
Obtain descriptive information for Coverage.
|
WCSCapabilities |
getCapabilities()
Obtain the Capabilities provided by the WCS service.
|
Coverage |
getCoverage(WCSParameter wcsParameter)
Get the Coverage object.
|
java.lang.String |
getVersion()
The version information of WCS.
|
boolean |
initialize(java.util.List<java.lang.Object> components)
WCS initialization method.
|
WCSCapabilities getCapabilities() throws OGCException
OGCException
- OGC exception information.java.util.List<CoverageDescription> describeCoverage(java.lang.String identifiers) throws OGCException
identifiers
- Coverage identifiers.OGCException
- OGC exception information.Coverage getCoverage(WCSParameter wcsParameter) throws OGCException
wcsParameter
- Gets the request parameters for the coverage.OGCException
- OGC exception information.boolean initialize(java.util.List<java.lang.Object> components) throws OGCException
components
- set the service component set to process WCS request.OGCException
- OGC exception information.java.lang.String getVersion()