-
Notifications
You must be signed in to change notification settings - Fork 14
/
wms-capabilities.xml
86 lines (80 loc) · 3.55 KB
/
wms-capabilities.xml
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
<?xml version="1.0"?>
<WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd">
<!-- Service Metadata -->
<Service>
<!-- The WMT-defined name for this type of service -->
<Name>Custom WMS services</Name>
<!-- Human-readable title for pick lists -->
<Title>Custom WMS Group</Title>
<!-- Narrative description providing additional information -->
<Abstract>Demonstration of custom rendered wms layer</Abstract>
<!-- Top-level web address of service or service provider. See also OnlineResource
elements under <DCPType>. -->
<OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:type="simple" xlink:href="http://github.com/davidmoten/grumpy" />
<!-- Contact information -->
<ContactInformation>
<ContactPersonPrimary>
<ContactPerson>Fred Nurk</ContactPerson>
<ContactOrganization>Australian Nurk Organisation
</ContactOrganization>
</ContactPersonPrimary>
<ContactPosition>Developer</ContactPosition>
<ContactAddress>
<AddressType>None</AddressType>
<Address>Canberra</Address>
<City>Canberra</City>
<StateOrProvince>ACT</StateOrProvince>
<PostCode>2600</PostCode>
<Country>Australia</Country>
</ContactAddress>
<ContactVoiceTelephone>0123456789</ContactVoiceTelephone>
<ContactElectronicMailAddress>[email protected]
</ContactElectronicMailAddress>
</ContactInformation>
<!-- Fees or access constraints imposed. -->
<Fees>none</Fees>
<AccessConstraints>none</AccessConstraints>
<LayerLimit>20</LayerLimit>
<MaxWidth>2000</MaxWidth>
<MaxHeight>2000</MaxHeight>
</Service>
<Capability>
<Request>
<GetCapabilities>
<Format>text/xml</Format>
</GetCapabilities>
<GetMap>
<Format>image/png</Format>
</GetMap>
<GetFeatureInfo>
<!-- <Format>text/plain</Format> <Format>text/swf</Format> -->
<Format>application/vnd.ogc.gml</Format>
<Format>text/xml</Format>
<Format>text/html</Format>
</GetFeatureInfo>
</Request>
<Exception>
<Format>XML</Format>
<Format>INIMAGE</Format>
<Format>BLANK</Format>
</Exception>
<Layer queryable="0" opaque="1">
<Name>Darkness</Name>
<Title>Darkness</Title>
<CRS>EPSG:4326</CRS>
<CRS>EPSG:3857</CRS>
<EX_GeographicBoundingBox>
<westBoundLongitude>-180</westBoundLongitude>
<eastBoundLongitude>180</eastBoundLongitude>
<southBoundLatitude>-90</southBoundLatitude>
<northBoundLatitude>90</northBoundLatitude>
</EX_GeographicBoundingBox>
<BoundingBox CRS="EPSG:4326" minx="-180" miny="-90"
maxx="180" maxy="90" />
<MaxScaleDenominator>500000000</MaxScaleDenominator>
</Layer>
</Capability>
</WMS_Capabilities>