summaryrefslogtreecommitdiffstats
path: root/petascope/src/petascope/wcs2/server/templates/GetCapabilitiesTemplate.xml
blob: 86631bf699032600c6c23e24ac3feaea17a793d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8"?>
<wcs:Capabilities  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns:ows='http://www.opengis.net/ows/1.1'
    xmlns:wcs='http://www.opengis.net/wcs/2.0'
    xmlns:gml='http://www.opengis.net/gml/3.2'
    xmlns='http://www.opengis.net/ows/1.1'
    xmlns:xlink='http://www.w3.org/1999/xlink'
    xsi:schemaLocation='http://www.opengis.net/wcs/2.0 {wcsSchemaUrl}/wcsAll.xsd' version="2.0.0">
    <ServiceIdentification>
        <Title>WCS 2.0 Coverage Server @ Jacobs University</Title>
        <Abstract>WCS 2.0 Server developed at jacobs University</Abstract>
        <ServiceType>OGC WCS</ServiceType>
        <ServiceTypeVersion>2.0.0</ServiceTypeVersion>
        <Profile>urn:ogc:def:extension:OGC-WCS:2.0:protocol:post</Profile>
        <Profile>urn:ogc:def:extension:OGC-WCS:2.0:serviceModel:wcps:1.0</Profile>
        <Profile>urn:ogc:def:extension:OGC-WCS:2.0:serviceModel:wcst:1.0</Profile>
    </ServiceIdentification>
    <ServiceProvider>
        <ProviderName>Jacobs University Bremen</ProviderName>
        <ows:ProviderSite xlink:href="http://www.petascope.org/"/>
        <ServiceContact>
            <ows:IndividualName>Prof. Dr. Peter Baumann</ows:IndividualName>
            <ows:ContactInfo>
                <ows:Address>
                    <ows:City>Bremen</ows:City>
                    <ows:PostalCode>28717</ows:PostalCode>
                    <ows:Country>Germany</ows:Country>
                    <ows:ElectronicMailAddress>p.baumann@jacobs-university.de</ows:ElectronicMailAddress>
                </ows:Address>
            </ows:ContactInfo>
            <ows:Role>Project Leader</ows:Role>
        </ServiceContact>
    </ServiceProvider>
    <OperationsMetadata>
        <Operation name="GetCapabilities">
            <DCP>
                <HTTP>
                    <Get xlink:href="{URL}"/>
                </HTTP>
            </DCP>
            <Parameter name="Format">
                <AllowedValues>
                    <Value>text/xml</Value>
                </AllowedValues>
            </Parameter>
            <Constraint name="PostEncoding">
                <AllowedValues>
                    <Value>XML</Value>
                </AllowedValues>
            </Constraint>
        </Operation>
        <Operation name="DescribeCoverage">
            <DCP>
                <HTTP>
                    <Get xlink:href="{URL}"/>
                </HTTP>
            </DCP>
            <Parameter name="Format">
                <AllowedValues>
                    <Value>text/xml</Value>
                </AllowedValues>
            </Parameter>
            <Constraint name="PostEncoding">
                <AllowedValues>
                    <Value>XML</Value>
                </AllowedValues>
            </Constraint>
        </Operation>
        <Operation name="GetCoverage">
            <DCP>
                <HTTP>
                    <Get xlink:href="{URL}"/>
                </HTTP>
            </DCP>
            <Parameter name="Format">
                <AllowedValues>
                    <Value>text/xml</Value>
                </AllowedValues>
            </Parameter>
            <Constraint name="PostEncoding">
                <AllowedValues>
                    <Value>XML</Value>
                </AllowedValues>
            </Constraint>
        </Operation>
    </OperationsMetadata>
    <wcs:Contents>
        {Coverages}
    </wcs:Contents>
    <wcs:WcsServiceMetadata />

</wcs:Capabilities>