Statistics
| Revision:

root / trunk / libraries / libWMSv0 / wmsSchemas / capabilities_1_3_0.xml @ 8552

History | View | Annotate | Download (11.2 KB)

1 150 fernando
<?xml version='1.0' encoding="UTF-8"?>
2
<WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms"
3
  xmlns:xlink="http://www.w3.org/1999/xlink"
4
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
  xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd">
6
<!-- Service Metadata -->
7
<Service>
8
  <!-- The WMT-defined name for this type of service -->
9
  <Name>WMS</Name>
10
  <!-- Human-readable title for pick lists -->
11
  <Title>Acme Corp. Map Server</Title>
12
  <!-- Narrative description providing additional information -->
13
  <Abstract>Map Server maintained by Acme Corporation.  Contact: webmaster@wmt.acme.com.  High-quality maps showing roadrunner nests and possible ambush locations.</Abstract>
14
  <KeywordList>
15
    <Keyword>bird</Keyword>
16
    <Keyword>roadrunner</Keyword>
17
    <Keyword>ambush</Keyword>
18
  </KeywordList>
19
  <!-- Top-level web address of service or service provider.  See also OnlineResource
20
  elements under <DCPType>. -->
21
  <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple"
22
   xlink:href="http://hostname/" />
23
  <!-- Contact information -->
24
  <ContactInformation>
25
    <ContactPersonPrimary>
26
      <ContactPerson>Jeff Smith</ContactPerson>
27
      <ContactOrganization>NASA</ContactOrganization>
28
    </ContactPersonPrimary>
29
    <ContactPosition>Computer Scientist</ContactPosition>
30
    <ContactAddress>
31
      <AddressType>postal</AddressType>
32
      <Address>NASA Goddard Space Flight Center</Address>
33
      <City>Greenbelt</City>
34
      <StateOrProvince>MD</StateOrProvince>
35
      <PostCode>20771</PostCode>
36
      <Country>USA</Country>
37
    </ContactAddress>
38
    <ContactVoiceTelephone>+1 301 555-1212</ContactVoiceTelephone>
39
    <ContactElectronicMailAddress>user@host.com</ContactElectronicMailAddress>
40
  </ContactInformation>
41
  <!-- Fees or access constraints imposed. -->
42
  <Fees>none</Fees>
43
  <AccessConstraints>none</AccessConstraints>
44
  <LayerLimit>16</LayerLimit>
45
  <MaxWidth>2048</MaxWidth>
46
  <MaxHeight>2048</MaxHeight>
47
</Service>
48
<Capability>
49
  <Request>
50
    <GetCapabilities>
51
      <Format>text/xml</Format>
52
      <DCPType>
53
        <HTTP>
54
          <Get>
55
            <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
56
             xlink:type="simple"
57
             xlink:href="http://hostname/path?" />
58
          </Get>
59
          <Post>
60
            <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
61
             xlink:type="simple"
62
             xlink:href="http://hostname/path?" />
63
          </Post>
64
        </HTTP>
65
      </DCPType>
66
    </GetCapabilities>
67
    <GetMap>
68
      <Format>image/gif</Format>
69
      <Format>image/png</Format>
70
      <Format>image/jpeg</Format>
71
      <DCPType>
72
        <HTTP>
73
          <Get>
74
            <!-- The URL here for invoking GetCapabilities using HTTP GET
75
            is only a prefix to which a query string is appended. -->
76
            <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
77
             xlink:type="simple"
78
             xlink:href="http://hostname/path?" />
79
          </Get>
80
        </HTTP>
81
      </DCPType>
82
    </GetMap>
83
    <GetFeatureInfo>
84
      <Format>text/xml</Format>
85
      <Format>text/plain</Format>
86
      <Format>text/html</Format>
87
      <DCPType>
88
        <HTTP>
89
          <Get>
90
            <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
91
             xlink:type="simple"
92
             xlink:href="http://hostname/path?" />
93
          </Get>
94
        </HTTP>
95
      </DCPType>
96
    </GetFeatureInfo>
97
  </Request>
98
  <Exception>
99
    <Format>XML</Format>
100
    <Format>INIMAGE</Format>
101
    <Format>BLANK</Format>
102
  </Exception>
103
  <Layer>
104
    <Title>Acme Corp. Map Server</Title>
105
    <CRS>CRS:84</CRS> <!-- all layers are available in at least this CRS -->
106
    <AuthorityURL name="DIF_ID">
107
      <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple"
108
       xlink:href="http://gcmd.gsfc.nasa.gov/difguide/whatisadif.html" />
109
    </AuthorityURL>
110
    <Layer>
111
      <!-- This parent layer has a Name and can therefore be requested from a Map Server, yielding a map of all subsidiary layers. -->
112
      <Name>ROADS_RIVERS</Name>
113
      <Title>Roads and Rivers</Title>
114
      <!-- See the spec to learn how some characteristics are inherited by
115
           subsidiary layers. -->
116
      <CRS>EPSG:26986</CRS> <!-- An additional CRS for this layer -->
117
      <EX_GeographicBoundingBox>
118
        <westBoundLongitude>-71.63</westBoundLongitude>
119
        <eastBoundLongitude>-70.78</eastBoundLongitude>
120
        <southBoundLatitude>41.75</southBoundLatitude>
121
        <northBoundLatitude>42.90</northBoundLatitude>
122
      </EX_GeographicBoundingBox>
123
      <!-- The optional resx and resy attributes indicate the X and Y spatial
124
           resolution in the units of that CRS. -->
125
      <BoundingBox CRS="CRS:84"
126
       minx="-71.63" miny="41.75" maxx="-70.78" maxy="42.90" resx="0.01" resy="0.01"/>
127
      <BoundingBox CRS="EPSG:26986"
128
       minx="189000" miny="834000" maxx="285000" maxy="962000" resx="1" resy="1" />
129
      <!-- Optional Title, URL and logo image of data provider. -->
130
      <Attribution>
131
        <Title>State College University</Title>
132
        <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple"
133
         xlink:href="http://www.university.edu/" />
134
        <LogoURL width="100" height="100">
135
          <Format>image/gif</Format>
136
          <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
137
           xlink:type="simple"
138
           xlink:href="http://www.university.edu/icons/logo.gif" />
139
        </LogoURL>
140
      </Attribution>
141
      <!-- Identifier whose meaning is defined in an AuthorityURL element -->
142
      <Identifier authority="DIF_ID">123456</Identifier>
143
      <FeatureListURL>
144
        <Format>XML"</Format>
145
        <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple"
146
         xlink:href="http://www.university.edu/data/roads_rivers.gml" />
147
      </FeatureListURL>
148
      <Style>
149
        <Name>USGS</Name>
150
        <Title>USGS Topo Map Style</Title>
151
        <Abstract>Features are shown in a style like that used in USGS topographic maps.</Abstract>
152
        <!-- A picture of a legend for a Layer in this Style -->
153
        <LegendURL width="72" height="72">
154
          <Format>image/gif</Format>
155
          <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
156
           xlink:type="simple"
157
           xlink:href="http://www.university.edu/legends/usgs.gif" />
158
        </LegendURL>
159
        <!-- An XSL stylesheet describing how feature data will rendered to create
160
             a map of this layer. -->
161
        <StyleSheetURL>
162
          <Format>text/xsl</Format>
163
          <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
164
           xlink:type="simple"
165
           xlink:href="http://www.university.edu/stylesheets/usgs.xsl" />
166
        </StyleSheetURL>
167
      </Style>
168
      <Layer queryable="1">
169
        <Name>ROADS_1M</Name>
170
        <Title>Roads at 1:1M scale</Title>
171
        <Abstract>Roads at a scale of 1 to 1 million.</Abstract>
172
        <KeywordList>
173
          <Keyword>road</Keyword>
174
          <Keyword>transportation</Keyword>
175
          <Keyword>atlas</Keyword>
176
        </KeywordList>
177
        <Identifier authority="DIF_ID">123456</Identifier>
178
        <MetadataURL type="FGDC:1998">
179
                <Format>text/plain</Format>
180
                <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
181
                 xlink:type="simple"
182
                 xlink:href="http://www.university.edu/metadata/roads.txt" />
183
             </MetadataURL>
184
        <MetadataURL type="ISO19115:2003">
185
               <Format>text/xml</Format>
186
               <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
187
                xlink:type="simple"
188
                xlink:href="http://www.university.edu/metadata/roads.xml" />
189
             </MetadataURL>
190
        <!-- In addition to the Style specified in the parent Layer, this Layer is
191
             available in this style. -->
192
        <Style>
193
          <Name>ATLAS</Name>
194
          <Title>Road atlas style</Title>
195
          <Abstract>Roads are shown in a style like that used in a commercial road atlas.</Abstract>
196
        <LegendURL width="72" height="72">
197
          <Format>image/gif</Format>
198
          <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
199
           xlink:type="simple"
200
           xlink:href="http://www.university.edu/legends/atlas.gif" />
201
        </LegendURL>
202
        </Style>
203
      </Layer>
204
      <Layer queryable="1">
205
        <Name>RIVERS_1M</Name>
206
        <Title>Rivers at 1:1M scale</Title>
207
        <Abstract>Rivers at a scale of 1 to 1 million.</Abstract>
208
        <KeywordList>
209
          <Keyword>river</Keyword>
210
          <Keyword>canal</Keyword>
211
          <Keyword>waterway</Keyword>
212
        </KeywordList>
213
      </Layer>
214
    </Layer>
215
    <Layer queryable="1">
216
      <Title>Weather Forecast Data</Title>
217
      <CRS>CRS:84</CRS> <!-- harmless repetition of common CRS -->
218
219
      <EX_GeographicBoundingBox>
220
        <westBoundLongitude>-180</westBoundLongitude>
221
        <eastBoundLongitude>180</eastBoundLongitude>
222
        <southBoundLatitude>-90</southBoundLatitude>
223
        <northBoundLatitude>90</northBoundLatitude>
224
      </EX_GeographicBoundingBox>
225
      <!-- These weather data are available daily from 1999-01-01 through
226
           2000-08-22. -->
227
      <Dimension name="time" units="ISO8601" default="2000-08-22">
228
         1999-01-01/2000-08-22/P1D
229
      </Dimension>
230
      <Layer>
231
        <Name>Clouds</Name>
232
        <Title>Forecast cloud cover</Title>
233
      </Layer>
234
      <Layer>
235
        <Name>Temperature</Name>
236
        <Title>Forecast temperature</Title>
237
      </Layer>
238
      <Layer>
239
        <Name>Pressure</Name>
240
        <Title>Forecast barometric pressure</Title>
241
             <!-- This Pressure layer is available at several elevations and times. -->
242
         <Dimension name="elevation" units="EPSG:5030" />
243
         <Dimension name="time" units="ISO8601" default="2000-08-22">
244
           1999-01-01/2000-08-22/P1D</Dimension>
245
         <Dimension name="elevation" units="CRS:88" default="0" nearestValue="1">
246
           0,1000,3000,5000,10000</Dimension>
247
      </Layer>
248
    </Layer>
249
    <!-- Example of a layer which is a static map of fixed
250
         size which the server cannot subset or make transparent -->
251
    <Layer opaque="1" noSubsets="1" fixedWidth="512" fixedHeight="256">
252
      <Name>ozone_image</Name>
253
      <Title>Global ozone distribution (1992)</Title>
254
      <EX_GeographicBoundingBox>
255
        <westBoundLongitude>-180</westBoundLongitude>
256
        <eastBoundLongitude>180</eastBoundLongitude>
257
        <southBoundLatitude>-90</southBoundLatitude>
258
        <northBoundLatitude>90</northBoundLatitude>
259
      </EX_GeographicBoundingBox>
260
      <Dimension name="time" units="ISO8601" default="1992">1992</Dimension>
261
    </Layer>
262
    <!-- Example of a layer which originated from another WMS and has been
263
         "cascaded" by this WMS. -->
264
    <Layer cascaded="1">
265
      <Name>population</Name>
266
      <Title>World population, annual</Title>
267
      <EX_GeographicBoundingBox>
268
        <westBoundLongitude>-180</westBoundLongitude>
269
        <eastBoundLongitude>180</eastBoundLongitude>
270
        <southBoundLatitude>-90</southBoundLatitude>
271
        <northBoundLatitude>90</northBoundLatitude>
272
      </EX_GeographicBoundingBox>
273
      <Dimension name="time" units="ISO8601" default="2000">1990/2000/P1Y</Dimension>
274
    </Layer>
275
  </Layer>
276
</Capability>
277
</WMS_Capabilities>