Web Coverage Service
The WCS allows the end user to directly download raster imagery data in either JPEG2000 or GeoTIFF format. The WCS supports the following operations:
- GetCapabilities The GetCapabilities request is used to determine the supported Coverages; each FinishedCatalog product is listed and described as a Coverage.
- DescribeCoverage The DescribeCoverage request is used to obtain the detailed description of a supported Coverage.
- GetCoverage The GetCoverage request is used to obtain the actual product pixels (imagery) for download.
Typical Structure of a WCS Application
Service Details
The Maxar WCS supports KVP (Keyword Value Pair) request encoding only; SOAP (Simple Object Access Protocol) or other protocols are not supported.
The WCS does NOT support the following optional capabilities:
- Range subsetting
- Store capability; all Coverages are returned synchronously
| Because full-resolution imagery is being retrieved, sometimes over limited bandwidth connections, the WCS determines the size of the requested product, and if it exceeds 1GB, an exception is returned. Since the limit is based on file size, larger areas can be downloaded if the compressed JPEG2000 format is requested rather than GeoTIFF. |
| Users can download an unlimited quantity of Web Coverages. Users accessing the service are limited to 1GB of downloaded data per request. |
The WCS treats each available product as a separate Coverage, therefore the imagery returned depends on the layer being accessed.
| The parameter used to request Coverage is the Feature Identifier. This makes it convenient to request metadata for the product via the Feature Service, and then request the actual imagery product via the WCS, using the same identifier. |
| Since additional Coverages become available as data is added to the Service, the response to a GetCapabilities request is updated each time a new product is made available. Therefore, take care when using client-side caching of results. |
WCS Client-Server Architecture
The following architecture depicts a sample integration of
The
Sample WCS Client Server Application
WCS Service Details
The Maxar
GetCapabilities Operation
In response to the GetCapabilities request, the Service returns a description of the available Capabilities, including a list of all available Coverages. Since each Finished Product is defined as a Coverage, the GetCapabilities response can be quite large. In addition, as more data is added, the list of Coverages will grow and change over time, so clients must be careful if they are caching the results.

The GetCapabilities Request is formatted as shown; there are no other options available:
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?service=WCS&request=GetCapabilities&version=1.1.1&connectId=<CONNECTID> Note: Replace <CONNECTID> with the connectId provided by Maxar. Parameters are not required to be in the same order as shown above. |

In response to a GetCapabilities request, the Service returns an XML document that describes each available operation and Coverage.
DescribeCoverage Operation

The client provides the following information in a Keyword Value Pair (KVP) format, where the "name" field is the key, and the "value" field is the value; the data is supplied in the format "key=value"; for example, "service=WCS".
Name | Value | Short Description |
---|---|---|
WCS | Web Coverage Service | |
1.1.1 | Request version | |
DescribeCoverage | Request name | |
List of Coverages to be described e.g., 6085f54600b2a8a93137e48750a4441e | The Coverage(s) to be described; each product in the layers is a Coverage and can be requested; multiple identifiers are comma-separated; at least one valid identifier must be included. The Coverage identifiers can be obtained from the GetCapabilities response. | |
connectId* | Globally Unique Identifier <CONNECTID> supplied to the service user by Maxar. | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
* mandatory parameter

In response to a DescribeCoverage request, an XML document is returned that defines the details of each requested Coverage, using a "CoverageDescription" data structure. The elements of this data structure for this WCS are defined above. This data structure is repeated for each Coverage specified via the "identifiers" values in the DescribeCoverage request.
The following example requests a description of the specified Coverage:
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?SERVICE=WCS&REQUEST=DescribeCoverage&version=1.1.1&connectId=<CONNECTID>&identifiers=<FeatureID> Note: Replace <CONNECTID> with the connectId provided by Maxar. Replace <FEATUREID> with your desired featureID. Parameters are not required to be in the same order as shown above. |
GetCoverage Operation
The GetCoverage request results in an image product being returned to the requesting client. Since the WCS protocol does not support mosaicked images across Coverages, separate GetCoverage requests are required for each Online FinishedCatalog product. Each Online FinishedCatalog product equates to a Coverage.

The GetCoverage request is used to request a full-resolution product file in one of the supported formats, currently GeoTIFF and JPEG2000.
The client provides the following information in a Keyword Value Pair (KVP) format, where the "name" field is the key, and the "value" field is the value; the data is supplied in the format "key=value"; for example, "service=WCS".
Name | Value | Short Description |
---|---|---|
WCS | Web Coverage Service | |
1.1.1 | Request version | |
GetCoverage | Request name | |
A Coverage identifier e.g., 6085f54600b2a8a93137e48750a4441e | The Coverage to be described. | |
boundingBox* | 35.6, -117.7,35.7,-117.6 | The Bounding Box of the portion of the Coverage to be returned (minY,minX,maxY,maxX). |
gridCRS | EPSG:4326 (each valid EPSG value for UTM) | The CRS in which the Coverage response will be returned; supported CRSs are WGS84 Lat/Long and WGS84 UTM. If not included, the default CRS of the projection will be returned; this will be WGS84 Lat/Long. |
gridOffsets* | UTM: 0.5, 0.5 Lat/Long: .0000045, .0000045 | Specifies the pixel size to be returned, in the X and Y dimensions. For gridCRS UTM values this is returned in meters. For gridCRS Lat/Long values this is returned in degrees/pixel. Minimum values are 0.5m and .0000045 degrees; these equate to full resolution data for WV01 |
format* | image/geotiff image/jp2 image/x-mrsid-image image/geopdf | The format in which the Coverage response will be returned. Only one value can be supplied. |
connectId* | Character String | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
* mandatory parameter

The response to a valid GetCoverage request is a multi-part MIME message, consisting of an XML file containing Coverage metadata, and the Coverage file in the requested format. This Coverage file will consist of the portion of the Coverage contained within the bounding box supplied in the GetCoverage request. Any portion of the bounding box for which no imagery is available in the requested Coverage will contain black-filled pixels.
The following example requests a TIFF product of the same Coverage described in the above example:
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?service=WCS&version=1.1.1&request=GetCoverage&format=image/tiff&identifier=<FeatureID>&boundingBox=34.959843,-118.013832,36.019478,-117.814011,urn:ogc:def:crs:EPSG:4326&GridBaseCRS=urn:ogc:def:crs:EPSG:4326&GridOffsets=0.00010,0.00010&connectId=<CONNECTID> Note: Replace <CONNECTID> with the connectId provided by Maxar. Replace <FEATUREID> with your desired featureID. Parameters are not required to be in the same order as shown above. |
| To see imagery in a generic image viewer, you will need to remove the first 21 lines of the response (i.e., the first part of the MIME message). Remove the MIME message to View Imagery in a Generic Viewer |
Integration Procedure
A WCS client application is a program that communicates with the WCS server using the three functions: GetCapabilities, DescribeCoverage, and GetCoverage. More specifically, in a typical WCS client-server interaction, the following steps can be followed:
Step 1
The client must first request GetCapabilities from the WCS server in order to determine what the WCS server can do and what Coverage the WCS server can provide.
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?service=WCS&request=GetCapabilities&version=1.1.1&connectId=<CONNECTID> Note: Replace <CONNECTID> with the connectId provided by Maxar. Parameters are not required to be in the same order as shown above. |

The URL shown above contains Base URL and few parameters as explained in Request Parameters. The key parameter for this request is "request=GetCapabilities" which fetches the capabilities of Web Coverage Service and response in the form of XML data.
Name | Value | Short Description |
---|---|---|
SERVICE* | WCS | See Web Coverage Service. |
REQUEST* | GetCapabilities | The value for this parameter should always be "GetCapabilities" for step 1. |
VERSION | 1.1.1 | See Web Coverage Service. |
CONNECTID* | <CONNECTID> provided by Maxar | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
* mandatory parameter

In response to a GetCapabilities request, the WCS server produces an XML document containing the WCS server's service metadata, describing all the operations it supports, and providing information about the available Coverage. The client application has to parse the XML capabilities document to retrieve the necessary information used to request a Coverage. The Document Object Model (DOM) is a widely-used and efficient XML parser, which can be utilized to parse the XML document and retrieve the information. The DOM represents an XML document as a tree of nodes that can be easily traversed and edited with its standard interfaces.
The response XML to the GetCapabilities request contains the following details:
- WCS Service details, such as Name, Title, URL
- Contact Information, such as Person, Organization, Address, Telephone, Fax and Email
- WCS Capabilities, such as GetCapabilties, GetCoverage and DescribeCoverage along with respective formats and URLs.
Step 2
The client can request DescribeCoverage with the WCS server's capabilities information in order to get the Coverage information. Once a user has obtained a description of the supported Coverage, the GetCoverage request is used to access the metadata associated with one or more identifiers.
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?service=WCS&version=1.1.1&request=DescribeCoverage&identifiers=<FEATUREID>&connectId=<CONNECTID> Note: Replace <CONNECTID> with the connectId provided by Maxar. Replace <FEATUREID> with your desired featureID. Parameters are not required to be in the same order as shown above. |

The parameters available in the DescribeCoverage request are shown the table below. The client provides the following information in a Keyword Value Pair (KVP) format, where the "name" field is the key, and the "value" field is the value; the data is supplied in the format "key=value"; for example, "service=WCS".
Name | Value | Short Description |
---|---|---|
WCS | Web Coverage Service | |
1.1.1 | Request version | |
DescribeCoverage | Request name | |
List of Coverages to be described e.g., 6085f54600b2a8a93137e48750a4441e | The Coverage(s) to be described; each product in the layers is a Coverage and can be requested; multiple identifiers are comma-separated; at least one valid identifier must be included. The Coverage identifiers can be obtained from the GetCapabilities response. | |
connectId* | Globally Unique Identifier <CONNECTID> supplied to the service user by Maxar. | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |

In response to a valid DescribeCoverage request, the WCS returns a GML document containing zero or more Coverages that match the request criteria. Each Coverage is described by a list of properties contained in a GML document.
Step 3
To get the description of the supported GetCoverage, the user can use the following URL:
| https://evwhs.digitalglobe.com/deliveryservice/wcsaccess?SERVICE=WCS&REQUEST=GetCoverage&version=1.1.1&connectId=<CONNECTID>&identifier=<FeatureID>&FORMAT=image/jpeg&BoundingBox=32.56664276123047,36.03737258911133,32.68387985229492,36.175987243652344,urn:ogc:def:crs:EPSG::4326&GridBaseCRS=urn:ogc:def:crs:EPSG::4326&GridCS=urn:ogc:def:cs:OGC:0.0:Grid2dSquareCS&GridType=urn:ogc:def:method:WCS:1.1:2dGridIn2dCrs&GridOrigin=32.56664501123057,36.175989493652445&GridOffsets=0.0000045,0.0000045 Note: Replace <CONNECTID> with the connectId provided by Maxar. Replace <FEATUREID> with your desired featureID. Parameters are not required to be in the same order as shown above. |

The client provides the following information in a Keyword Value Pair (KVP) format, where the "name" field is the key, and the "value" field is the value; the data is supplied in the format "key=value"; for example, "service=WCS". See API Reference for the URL parameters for the GetCoverage request.

In response to a GetCoverage request, a GML document is returned that defines the elements of the requested Coverage. The elements of each supported Feature type are defined in API Reference. In the cases where returned data is dependent on the value of elements within the Coverage, the dependency is noted in the Description column.
Service Exceptions
In the event that a Web
An <ExceptionReport> element will contain one or more
The following is an example of an exception report. This exception indicates that the first insert statement failed because of a missing closing XML tag in the request.
<?xml version="1.0" encoding="UTF-8" ?>
<ows:ExceptionReport version="1.1.0"
xsi:schemaLocation="http://www.opengis.net/ows/1.1 http://evwhs.digitalglobe.com/deliveryservice/schemas/ows/1.1.0/owsAll.xsd"
xmlns:ows="http://www.opengis.net/ows/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ows:Exception exceptionCode="NoApplicableCode">
<ows:ExceptionText>DescribeCoverage: Could not find coverage: 334034 null Translator error DescribeCoverage: Could not find coverage: 334034</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
WCS Layers
OGC Layer | Description |
---|---|
Identifier <n> | Each Feature available to an account is returned in WCS as an identifier with a unique number and basic metadata. |
API Reference
This section provides a list of all possible request parameters for every WCS operation as well as detailed information about corresponding response.
The client should provide the respective information in a Keyword Value Pair (KVP) format for every WCS request, where the "name" field is the key, and the "value" field is the value; the data is supplied in the format "key=value"; for example, "service=WCS".

The following table shows all possible request parameters for GetCapabilities operation of WCS server.
Name | Value | Short Description |
---|---|---|
SERVICE* | WCS | See Web Coverage Service. |
REQUEST* | GetCapabilities | The value for this parameter should always be "GetCapabilities" for step 1. |
VERSION | 1.1.1 | See Web Coverage Service. |
CONNECTID* | <CONNECTID> provided by Maxar | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
*mandatory parameter

The following table shows the URL parameters for the GetCoverage request.
Name | Value | Short Description |
---|---|---|
WCS | Web Coverage Service | |
1.1.1 | Request version | |
GetCoverage | Request name | |
A Coverage identifier e.g., 6085f54600b2a8a93137e48750a4441e | The Coverage to be described. | |
boundingBox* | 35.6, -117.7,35.7,-117.6 | The Bounding Box of the portion of the Coverage to be returned (minY,minX,maxY,maxX). |
gridCRS | EPSG:4326 (each valid EPSG value for UTM) | The CRS in which the Coverage response will be returned; supported CRSs are WGS84 Lat/Long and WGS84 UTM. If not included, the default CRS of the projection will be returned; this will be WGS84 Lat/Long. |
gridOffsets* | UTM: 0.5, 0.5 Lat/Long: .0000045, .0000045 | Specifies the pixel size to be returned, in the X and Y dimensions. For gridCRS UTM values this is returned in meters. For gridCRS Lat/Long values this is returned in degrees/pixel. Minimum values are 0.5m and .0000045 degrees; these equate to full resolution data for WV01 |
format* | image/geotiff image/jp2 image/x-mrsid-image image/geopdf | The format in which the Coverage response will be returned. Only one value can be supplied. |
connectId* | Character String | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
*mandatory parameter

Name | Value | Short Description |
---|---|---|
WCS | Web Coverage Service | |
1.1.1 | Request version | |
DescribeCoverage | Request name | |
List of Coverages to be described e.g., 6085f54600b2a8a93137e48750a4441e | The Coverage(s) to be described; each product in the layers is a Coverage and can be requested; multiple identifiers are comma-separated; at least one valid identifier must be included. The Coverage identifiers can be obtained from the GetCapabilities response. | |
connectId* | Globally Unique Identifier <CONNECTID> supplied to the service user by Maxar. | Value for this parameter is a unique 32-digit alphanumeric value given by Maxar (see Connect ID). A valid Connect ID is mandatory for every request. |
*mandatory parameter