1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <CoverageDescriptions xmlns:py="http://purl.org/kid/ns#" xmlns="http://www.opengis.net/wcs/1.1" |
---|
3 | xmlns:ows="http://www.opengis.net/ows" |
---|
4 | xmlns:owcs="http://www.opengis.net/wcs/1.1/ows" |
---|
5 | xmlns:xlink="http://www.w3.org/1999/xlink" |
---|
6 | xmlns:gml="http://www.opengis.net/gml" |
---|
7 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
8 | xsi:schemaLocation="http://www.opengis.net/wcs/1.1 |
---|
9 | ../wcsDescribeCoverage.xsd http://www.opengis.net/wcs/1.1/ows |
---|
10 | ../owsDataIdentification.xsd"> |
---|
11 | <CoverageDescription py:for="cd in c.covDescs"> |
---|
12 | <ows:Title py:if="cd.titles is not None" py:content="cd.titles"/> |
---|
13 | <ows:Abstract py:if="cd.abstracts is not None" py:content="cd.abstracts"/> |
---|
14 | <ows:Keywords py:if = "cd.keywords is not None" > |
---|
15 | <ows:Keyword py:for="key in cd.keywords" py:content="key" /> |
---|
16 | </ows:Keywords> |
---|
17 | <Identifier py:content="cd.identifier"/> |
---|
18 | <Domain> |
---|
19 | <SpatialDomain> |
---|
20 | <ows:BoundingBox py:for="bb in cd.boundingBoxes" crs="${bb.crs}"> |
---|
21 | <ows:LowerCorner>${bb.lowerCorner[0]} ${bb.lowerCorner[1]}</ows:LowerCorner> |
---|
22 | <ows:UpperCorner>${bb.upperCorner[0]} ${bb.upperCorner[1]}</ows:UpperCorner> |
---|
23 | </ows:BoundingBox> |
---|
24 | <GridCRS> |
---|
25 | <GridBaseCRS></GridBaseCRS> |
---|
26 | <GridType></GridType> |
---|
27 | <GridOrigin></GridOrigin> |
---|
28 | <GridOffsets></GridOffsets> |
---|
29 | <GridCS></GridCS> |
---|
30 | </GridCRS> |
---|
31 | </SpatialDomain> |
---|
32 | <TemporalDomain> |
---|
33 | <TimePeriod> |
---|
34 | <beginTime>${cd.timeLimits[0]}</beginTime> |
---|
35 | <endTime>${cd.timeLimits[1]}</endTime> |
---|
36 | </TimePeriod> |
---|
37 | </TemporalDomain> |
---|
38 | </Domain> |
---|
39 | <Range> |
---|
40 | <Field> |
---|
41 | </Field> |
---|
42 | </Range> |
---|
43 | <SupportedCRS></SupportedCRS> |
---|
44 | <SupportedFormat>application/CF-netcdf</SupportedFormat> |
---|
45 | </CoverageDescription> |
---|
46 | </CoverageDescriptions> |
---|