@loaders.gl/wms 3.3.0-alpha.11 → 3.3.0-alpha.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. package/dist/bundle.d.ts +2 -0
  2. package/dist/bundle.d.ts.map +1 -0
  3. package/dist/bundle.js +6 -0
  4. package/dist/dist.min.js +4842 -5361
  5. package/dist/es5/index.js +41 -20
  6. package/dist/es5/index.js.map +1 -1
  7. package/dist/es5/lerc-loader.js +74 -0
  8. package/dist/es5/lerc-loader.js.map +1 -0
  9. package/dist/es5/lib/data-sources/adhoc-image-service.js +125 -0
  10. package/dist/es5/lib/data-sources/adhoc-image-service.js.map +1 -0
  11. package/dist/es5/lib/data-sources/image-source.js +14 -0
  12. package/dist/es5/lib/data-sources/image-source.js.map +1 -0
  13. package/dist/es5/lib/data-sources/wms-service.js +192 -173
  14. package/dist/es5/lib/data-sources/wms-service.js.map +1 -1
  15. package/dist/es5/lib/gml/deep-strict-equal.js +64 -0
  16. package/dist/es5/lib/gml/deep-strict-equal.js.map +1 -0
  17. package/dist/es5/lib/gml/parse-gml.js +3 -3
  18. package/dist/es5/lib/gml/parse-gml.js.map +1 -1
  19. package/dist/es5/lib/lerc/lerc-types.js +2 -0
  20. package/dist/es5/lib/lerc/lerc-types.js.map +1 -0
  21. package/dist/es5/lib/wcs/parse-wcs.js +43 -0
  22. package/dist/es5/lib/wcs/parse-wcs.js.map +1 -0
  23. package/dist/es5/lib/wcs/wcs-types.js +2 -0
  24. package/dist/es5/lib/wcs/wcs-types.js.map +1 -0
  25. package/dist/es5/lib/wms/parse-wms.js +6 -4
  26. package/dist/es5/lib/wms/parse-wms.js.map +1 -1
  27. package/dist/es5/wip/data-source.js +4 -0
  28. package/dist/es5/wip/data-source.js.map +1 -0
  29. package/dist/es5/{gml-loader.js → wip/gml-loader.js} +2 -2
  30. package/dist/es5/wip/gml-loader.js.map +1 -0
  31. package/dist/es5/{wcs-capabilities-loader.js → wip/wcs-capabilities-loader.js} +5 -5
  32. package/dist/es5/wip/wcs-capabilities-loader.js.map +1 -0
  33. package/dist/es5/{wfs-capabilities-loader.js → wip/wfs-capabilities-loader.js} +3 -3
  34. package/dist/es5/wip/wfs-capabilities-loader.js.map +1 -0
  35. package/dist/es5/{wms-feature-info-loader.js → wip/wms-feature-info-loader.js} +3 -3
  36. package/dist/es5/wip/wms-feature-info-loader.js.map +1 -0
  37. package/dist/es5/{wms-layer-description-loader.js → wip/wms-layer-description-loader.js} +3 -3
  38. package/dist/es5/wip/wms-layer-description-loader.js.map +1 -0
  39. package/dist/es5/wip/wms-layer-description-loader.md +47 -0
  40. package/dist/es5/{wmts-capabilities-loader.js → wip/wmts-capabilities-loader.js} +3 -3
  41. package/dist/es5/wip/wmts-capabilities-loader.js.map +1 -0
  42. package/dist/es5/wms-capabilities-loader.js +2 -2
  43. package/dist/es5/wms-capabilities-loader.js.map +1 -1
  44. package/dist/es5/wms-error-loader.js +22 -6
  45. package/dist/es5/wms-error-loader.js.map +1 -1
  46. package/dist/esm/index.js +11 -5
  47. package/dist/esm/index.js.map +1 -1
  48. package/dist/esm/lerc-loader.js +25 -0
  49. package/dist/esm/lerc-loader.js.map +1 -0
  50. package/dist/esm/lib/data-sources/adhoc-image-service.js +41 -0
  51. package/dist/esm/lib/data-sources/adhoc-image-service.js.map +1 -0
  52. package/dist/esm/lib/data-sources/image-source.js +4 -0
  53. package/dist/esm/lib/data-sources/image-source.js.map +1 -0
  54. package/dist/esm/lib/data-sources/wms-service.js +136 -116
  55. package/dist/esm/lib/data-sources/wms-service.js.map +1 -1
  56. package/dist/esm/lib/gml/deep-strict-equal.js +57 -0
  57. package/dist/esm/lib/gml/deep-strict-equal.js.map +1 -0
  58. package/dist/esm/lib/gml/parse-gml.js +1 -1
  59. package/dist/esm/lib/gml/parse-gml.js.map +1 -1
  60. package/dist/esm/lib/lerc/lerc-types.js +2 -0
  61. package/dist/esm/lib/lerc/lerc-types.js.map +1 -0
  62. package/dist/esm/lib/wcs/parse-wcs.js +32 -0
  63. package/dist/esm/lib/wcs/parse-wcs.js.map +1 -0
  64. package/dist/esm/lib/wcs/wcs-types.js +2 -0
  65. package/dist/esm/lib/wcs/wcs-types.js.map +1 -0
  66. package/dist/esm/lib/wms/parse-wms.js +6 -4
  67. package/dist/esm/lib/wms/parse-wms.js.map +1 -1
  68. package/dist/esm/wip/data-source.js +2 -0
  69. package/dist/esm/wip/data-source.js.map +1 -0
  70. package/dist/esm/{gml-loader.js → wip/gml-loader.js} +2 -2
  71. package/dist/esm/wip/gml-loader.js.map +1 -0
  72. package/dist/esm/{wcs-capabilities-loader.js → wip/wcs-capabilities-loader.js} +3 -3
  73. package/dist/esm/wip/wcs-capabilities-loader.js.map +1 -0
  74. package/dist/esm/{wfs-capabilities-loader.js → wip/wfs-capabilities-loader.js} +3 -3
  75. package/dist/esm/wip/wfs-capabilities-loader.js.map +1 -0
  76. package/dist/esm/{wms-feature-info-loader.js → wip/wms-feature-info-loader.js} +3 -3
  77. package/dist/esm/wip/wms-feature-info-loader.js.map +1 -0
  78. package/dist/esm/{wms-layer-description-loader.js → wip/wms-layer-description-loader.js} +3 -3
  79. package/dist/esm/wip/wms-layer-description-loader.js.map +1 -0
  80. package/dist/esm/wip/wms-layer-description-loader.md +47 -0
  81. package/dist/esm/{wmts-capabilities-loader.js → wip/wmts-capabilities-loader.js} +3 -3
  82. package/dist/esm/wip/wmts-capabilities-loader.js.map +1 -0
  83. package/dist/esm/wms-capabilities-loader.js +2 -2
  84. package/dist/esm/wms-capabilities-loader.js.map +1 -1
  85. package/dist/esm/wms-error-loader.js +20 -5
  86. package/dist/esm/wms-error-loader.js.map +1 -1
  87. package/dist/index.d.ts +25 -0
  88. package/dist/index.d.ts.map +1 -0
  89. package/dist/index.js +27 -0
  90. package/dist/lerc-loader.d.ts +30 -0
  91. package/dist/lerc-loader.d.ts.map +1 -0
  92. package/dist/lerc-loader.js +56 -0
  93. package/dist/lib/data-sources/adhoc-image-service.d.ts +22 -0
  94. package/dist/lib/data-sources/adhoc-image-service.d.ts.map +1 -0
  95. package/dist/lib/data-sources/adhoc-image-service.js +44 -0
  96. package/dist/lib/data-sources/image-source.d.ts +73 -0
  97. package/dist/lib/data-sources/image-source.d.ts.map +1 -0
  98. package/dist/lib/data-sources/image-source.js +12 -0
  99. package/dist/lib/data-sources/wms-service.d.ts +193 -0
  100. package/dist/lib/data-sources/wms-service.d.ts.map +1 -0
  101. package/dist/lib/data-sources/wms-service.js +206 -0
  102. package/dist/lib/gml/deep-strict-equal.d.ts +3 -0
  103. package/dist/lib/gml/deep-strict-equal.d.ts.map +1 -0
  104. package/dist/lib/gml/deep-strict-equal.js +119 -0
  105. package/dist/lib/gml/parse-gml.d.ts +28 -0
  106. package/dist/lib/gml/parse-gml.d.ts.map +1 -0
  107. package/dist/lib/gml/parse-gml.js +371 -0
  108. package/dist/lib/lerc/lerc-types.d.ts +30 -0
  109. package/dist/lib/lerc/lerc-types.d.ts.map +1 -0
  110. package/dist/lib/lerc/lerc-types.js +3 -0
  111. package/dist/lib/wcs/parse-wcs.d.ts +7 -0
  112. package/dist/lib/wcs/parse-wcs.d.ts.map +1 -0
  113. package/dist/lib/wcs/parse-wcs.js +36 -0
  114. package/dist/lib/wcs/wcs-types.d.ts +73 -0
  115. package/dist/lib/wcs/wcs-types.d.ts.map +1 -0
  116. package/dist/lib/wcs/wcs-types.js +3 -0
  117. package/dist/lib/wfs/parse-wfs.d.ts +7 -0
  118. package/dist/lib/wfs/parse-wfs.d.ts.map +1 -0
  119. package/dist/lib/wfs/parse-wfs.js +36 -0
  120. package/dist/lib/wfs/wfs-types.d.ts +73 -0
  121. package/dist/lib/wfs/wfs-types.d.ts.map +1 -0
  122. package/dist/lib/wfs/wfs-types.js +3 -0
  123. package/dist/lib/wms/parse-wms.d.ts +24 -0
  124. package/dist/lib/wms/parse-wms.d.ts.map +1 -0
  125. package/dist/lib/wms/parse-wms.js +115 -0
  126. package/dist/lib/wms/wms-types.d.ts +100 -0
  127. package/dist/lib/wms/wms-types.d.ts.map +1 -0
  128. package/dist/lib/wms/wms-types.js +1908 -0
  129. package/dist/lib/wmts/parse-wmts.d.ts +7 -0
  130. package/dist/lib/wmts/parse-wmts.d.ts.map +1 -0
  131. package/dist/lib/wmts/parse-wmts.js +36 -0
  132. package/dist/lib/wmts/wmts-types.d.ts +73 -0
  133. package/dist/lib/wmts/wmts-types.d.ts.map +1 -0
  134. package/dist/lib/wmts/wmts-types.js +3 -0
  135. package/dist/wip/data-source.d.ts +53 -0
  136. package/dist/wip/data-source.d.ts.map +1 -0
  137. package/dist/wip/data-source.js +57 -0
  138. package/dist/wip/gml-loader.d.ts +26 -0
  139. package/dist/wip/gml-loader.d.ts.map +1 -0
  140. package/dist/wip/gml-loader.js +31 -0
  141. package/dist/wip/wcs-capabilities-loader.d.ts +26 -0
  142. package/dist/wip/wcs-capabilities-loader.d.ts.map +1 -0
  143. package/dist/wip/wcs-capabilities-loader.js +31 -0
  144. package/dist/wip/wfs-capabilities-loader.d.ts +26 -0
  145. package/dist/wip/wfs-capabilities-loader.d.ts.map +1 -0
  146. package/dist/wip/wfs-capabilities-loader.js +31 -0
  147. package/dist/wip/wms-feature-info-loader.d.ts +22 -0
  148. package/dist/wip/wms-feature-info-loader.d.ts.map +1 -0
  149. package/dist/wip/wms-feature-info-loader.js +17 -0
  150. package/dist/wip/wms-layer-description-loader.d.ts +22 -0
  151. package/dist/wip/wms-layer-description-loader.d.ts.map +1 -0
  152. package/dist/wip/wms-layer-description-loader.js +17 -0
  153. package/dist/wip/wmts-capabilities-loader.d.ts +26 -0
  154. package/dist/wip/wmts-capabilities-loader.d.ts.map +1 -0
  155. package/dist/wip/wmts-capabilities-loader.js +31 -0
  156. package/dist/wms-capabilities-loader.d.ts +26 -0
  157. package/dist/wms-capabilities-loader.d.ts.map +1 -0
  158. package/dist/wms-capabilities-loader.js +31 -0
  159. package/dist/wms-error-loader.d.ts +34 -0
  160. package/dist/wms-error-loader.d.ts.map +1 -0
  161. package/dist/wms-error-loader.js +43 -0
  162. package/package.json +9 -8
  163. package/src/index.ts +34 -13
  164. package/src/lerc-loader.ts +50 -0
  165. package/src/lib/data-sources/adhoc-image-service.ts +58 -0
  166. package/src/lib/data-sources/image-source.ts +82 -0
  167. package/src/lib/data-sources/wms-service.ts +211 -177
  168. package/src/lib/gml/deep-strict-equal.ts +119 -0
  169. package/src/lib/gml/parse-gml.ts +1 -1
  170. package/src/lib/lerc/lerc-types.ts +43 -0
  171. package/src/lib/wcs/parse-wcs.ts +39 -0
  172. package/src/lib/wcs/wcs-types.ts +77 -0
  173. package/src/lib/wms/parse-wms.ts +16 -3
  174. package/src/{lib/data-sources/image-data-source.ts → wip/data-source.ts} +6 -29
  175. package/src/{gml-loader.ts → wip/gml-loader.ts} +1 -1
  176. package/src/{wcs-capabilities-loader.ts → wip/wcs-capabilities-loader.ts} +2 -2
  177. package/src/{wfs-capabilities-loader.ts → wip/wfs-capabilities-loader.ts} +2 -2
  178. package/src/{wms-feature-info-loader.ts → wip/wms-feature-info-loader.ts} +3 -3
  179. package/src/wip/wms-layer-description-loader.md +47 -0
  180. package/src/{wms-layer-description-loader.ts → wip/wms-layer-description-loader.ts} +3 -3
  181. package/src/{wmts-capabilities-loader.ts → wip/wmts-capabilities-loader.ts} +2 -2
  182. package/src/wms-capabilities-loader.ts +1 -1
  183. package/src/wms-error-loader.ts +25 -6
  184. package/dist/es5/gml-loader.js.map +0 -1
  185. package/dist/es5/lib/data-sources/image-data-source.js +0 -4
  186. package/dist/es5/lib/data-sources/image-data-source.js.map +0 -1
  187. package/dist/es5/wcs-capabilities-loader.js.map +0 -1
  188. package/dist/es5/wfs-capabilities-loader.js.map +0 -1
  189. package/dist/es5/wms-feature-info-loader.js.map +0 -1
  190. package/dist/es5/wms-layer-description-loader.js.map +0 -1
  191. package/dist/es5/wmts-capabilities-loader.js.map +0 -1
  192. package/dist/esm/gml-loader.js.map +0 -1
  193. package/dist/esm/lib/data-sources/image-data-source.js +0 -2
  194. package/dist/esm/lib/data-sources/image-data-source.js.map +0 -1
  195. package/dist/esm/wcs-capabilities-loader.js.map +0 -1
  196. package/dist/esm/wfs-capabilities-loader.js.map +0 -1
  197. package/dist/esm/wms-feature-info-loader.js.map +0 -1
  198. package/dist/esm/wms-layer-description-loader.js.map +0 -1
  199. package/dist/esm/wmts-capabilities-loader.js.map +0 -1
@@ -0,0 +1,1908 @@
1
+ "use strict";
2
+ // loaders.gl, MIT licenses
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ /*
5
+ <Capability>
6
+ <Request>
7
+ <GetCapabilities>
8
+ <Format>text/xml</Format>
9
+ <DCPType>
10
+ <HTTP>
11
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
12
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
13
+ </HTTP>
14
+ </DCPType>
15
+ </GetCapabilities>
16
+ <GetMap>
17
+ <Format>image/png</Format>
18
+ <Format>image/tiff</Format>
19
+ <Format>image/jpeg</Format>
20
+ <Format>image/png; mode=8bit</Format>
21
+ <Format>application/x-pdf</Format>
22
+ <Format>image/svg+xml</Format>
23
+ <DCPType>
24
+ <HTTP>
25
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
26
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
27
+ </HTTP>
28
+ </DCPType>
29
+ </GetMap>
30
+ <GetFeatureInfo>
31
+ <Format>text/plain</Format>
32
+ <Format>application/vnd.ogc.gml</Format>
33
+ <DCPType>
34
+ <HTTP>
35
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
36
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
37
+ </HTTP>
38
+ </DCPType>
39
+ </GetFeatureInfo>
40
+ <sld:DescribeLayer>
41
+ <Format>text/xml</Format>
42
+ <DCPType>
43
+ <HTTP>
44
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
45
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
46
+ </HTTP>
47
+ </DCPType>
48
+ </sld:DescribeLayer>
49
+ <sld:GetLegendGraphic>
50
+ <Format>image/png</Format>
51
+ <Format>image/jpeg</Format>
52
+ <Format>image/png; mode=8bit</Format>
53
+ <DCPType>
54
+ <HTTP>
55
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
56
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
57
+ </HTTP>
58
+ </DCPType>
59
+ </sld:GetLegendGraphic>
60
+ <ms:GetStyles>
61
+ <Format>text/xml</Format>
62
+ <DCPType>
63
+ <HTTP>
64
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
65
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
66
+ </HTTP>
67
+ </DCPType>
68
+ </ms:GetStyles>
69
+ </Request>
70
+ <Exception>
71
+ <Format>XML</Format>
72
+ <Format>INIMAGE</Format>
73
+ <Format>BLANK</Format>
74
+ </Exception>
75
+ <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/>
76
+ <Layer>
77
+ <Name>DMSP-Global-Composites-Version-4</Name>
78
+ <Title>DMSP-Global-Composites-Version-4</Title>
79
+ <Abstract>DMSP-Global-Composites-Version-4</Abstract>
80
+ <CRS>EPSG:4326</CRS>
81
+ <EX_GeographicBoundingBox>
82
+ <westBoundLongitude>-180</westBoundLongitude>
83
+ <eastBoundLongitude>180</eastBoundLongitude>
84
+ <southBoundLatitude>-65</southBoundLatitude>
85
+ <northBoundLatitude>75</northBoundLatitude>
86
+ </EX_GeographicBoundingBox>
87
+ <BoundingBox CRS="EPSG:4326"
88
+ minx="-65" miny="-180" maxx="75" maxy="180" />
89
+ <Layer queryable="0" opaque="0" cascaded="0">
90
+ <Name>countries</Name>
91
+ <Title>Countries</Title>
92
+ <CRS>EPSG:4326</CRS>
93
+ <EX_GeographicBoundingBox>
94
+ <westBoundLongitude>-180</westBoundLongitude>
95
+ <eastBoundLongitude>180</eastBoundLongitude>
96
+ <southBoundLatitude>-90</southBoundLatitude>
97
+ <northBoundLatitude>83.6236</northBoundLatitude>
98
+ </EX_GeographicBoundingBox>
99
+ <BoundingBox CRS="EPSG:4326"
100
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
101
+ <Style>
102
+ <Name>default</Name>
103
+ <Title>default</Title>
104
+ <LegendURL width="89" height="21">
105
+ <Format>image/png</Format>
106
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=countries&amp;format=image/png&amp;STYLE=default"/>
107
+ </LegendURL>
108
+ </Style>
109
+ </Layer>
110
+ <Layer queryable="0" opaque="0" cascaded="0">
111
+ <Name>adminboundaries</Name>
112
+ <Title>Administrative Boundaries</Title>
113
+ <CRS>EPSG:4326</CRS>
114
+ <EX_GeographicBoundingBox>
115
+ <westBoundLongitude>-180</westBoundLongitude>
116
+ <eastBoundLongitude>180</eastBoundLongitude>
117
+ <southBoundLatitude>-90</southBoundLatitude>
118
+ <northBoundLatitude>83.6236</northBoundLatitude>
119
+ </EX_GeographicBoundingBox>
120
+ <BoundingBox CRS="EPSG:4326"
121
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
122
+ <Style>
123
+ <Name>default</Name>
124
+ <Title>default</Title>
125
+ <LegendURL width="65" height="21">
126
+ <Format>image/png</Format>
127
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=adminboundaries&amp;format=image/png&amp;STYLE=default"/>
128
+ </LegendURL>
129
+ </Style>
130
+ </Layer>
131
+ <Layer queryable="0" opaque="0" cascaded="0">
132
+ <Name>eez</Name>
133
+ <Title>EEZ Boundaries</Title>
134
+ <CRS>EPSG:4326</CRS>
135
+ <EX_GeographicBoundingBox>
136
+ <westBoundLongitude>-179.999</westBoundLongitude>
137
+ <eastBoundLongitude>179.999</eastBoundLongitude>
138
+ <southBoundLatitude>-85.4703</southBoundLatitude>
139
+ <northBoundLatitude>87.0239</northBoundLatitude>
140
+ </EX_GeographicBoundingBox>
141
+ <BoundingBox CRS="EPSG:4326"
142
+ minx="-85.4703" miny="-179.999" maxx="87.0239" maxy="179.999" />
143
+ <Style>
144
+ <Name>default</Name>
145
+ <Title>default</Title>
146
+ <LegendURL width="53" height="21">
147
+ <Format>image/png</Format>
148
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=eez&amp;format=image/png&amp;STYLE=default"/>
149
+ </LegendURL>
150
+ </Style>
151
+ </Layer>
152
+ <Layer queryable="0" opaque="0" cascaded="0">
153
+ <Name>cities</Name>
154
+ <Title>Cities</Title>
155
+ <CRS>EPSG:4326</CRS>
156
+ <EX_GeographicBoundingBox>
157
+ <westBoundLongitude>-176.152</westBoundLongitude>
158
+ <eastBoundLongitude>179.222</eastBoundLongitude>
159
+ <southBoundLatitude>-54.792</southBoundLatitude>
160
+ <northBoundLatitude>78.2</northBoundLatitude>
161
+ </EX_GeographicBoundingBox>
162
+ <BoundingBox CRS="EPSG:4326"
163
+ minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
164
+ <Style>
165
+ <Name>default</Name>
166
+ <Title>default</Title>
167
+ <LegendURL width="71" height="21">
168
+ <Format>image/png</Format>
169
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=cities&amp;format=image/png&amp;STYLE=default"/>
170
+ </LegendURL>
171
+ </Style>
172
+ </Layer>
173
+ <Layer queryable="0" opaque="0" cascaded="0">
174
+ <Name>citieslabeled</Name>
175
+ <Title>Cities With Labels</Title>
176
+ <CRS>EPSG:4326</CRS>
177
+ <EX_GeographicBoundingBox>
178
+ <westBoundLongitude>-176.152</westBoundLongitude>
179
+ <eastBoundLongitude>179.222</eastBoundLongitude>
180
+ <southBoundLatitude>-54.792</southBoundLatitude>
181
+ <northBoundLatitude>78.2</northBoundLatitude>
182
+ </EX_GeographicBoundingBox>
183
+ <BoundingBox CRS="EPSG:4326"
184
+ minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
185
+ </Layer>
186
+ <Layer queryable="0" opaque="0" cascaded="0">
187
+ <Name>land</Name>
188
+ <Title>Land Sea Mask</Title>
189
+ <CRS>EPSG:4326</CRS>
190
+ <EX_GeographicBoundingBox>
191
+ <westBoundLongitude>-180</westBoundLongitude>
192
+ <eastBoundLongitude>180</eastBoundLongitude>
193
+ <southBoundLatitude>-90</southBoundLatitude>
194
+ <northBoundLatitude>83.6236</northBoundLatitude>
195
+ </EX_GeographicBoundingBox>
196
+ <BoundingBox CRS="EPSG:4326"
197
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
198
+ <Style>
199
+ <Name>default</Name>
200
+ <Title>default</Title>
201
+ <LegendURL width="59" height="21">
202
+ <Format>image/png</Format>
203
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=land&amp;format=image/png&amp;STYLE=default"/>
204
+ </LegendURL>
205
+ </Style>
206
+ </Layer>
207
+ <Layer queryable="0" opaque="0" cascaded="0">
208
+ <Name>LandSeaMask</Name>
209
+ <Title>LandSeaMask</Title>
210
+ <CRS>EPSG:4326</CRS>
211
+ <EX_GeographicBoundingBox>
212
+ <westBoundLongitude>-180</westBoundLongitude>
213
+ <eastBoundLongitude>180</eastBoundLongitude>
214
+ <southBoundLatitude>-90</southBoundLatitude>
215
+ <northBoundLatitude>90</northBoundLatitude>
216
+ </EX_GeographicBoundingBox>
217
+ <BoundingBox CRS="EPSG:4326"
218
+ minx="-90" miny="-180" maxx="90" maxy="180" />
219
+ </Layer>
220
+ <Layer queryable="0" opaque="0" cascaded="0">
221
+ <Name>Rivers</Name>
222
+ <Title>Rivers</Title>
223
+ <CRS>EPSG:4326</CRS>
224
+ <EX_GeographicBoundingBox>
225
+ <westBoundLongitude>-164.887</westBoundLongitude>
226
+ <eastBoundLongitude>160.764</eastBoundLongitude>
227
+ <southBoundLatitude>-36.9694</southBoundLatitude>
228
+ <northBoundLatitude>71.3925</northBoundLatitude>
229
+ </EX_GeographicBoundingBox>
230
+ <BoundingBox CRS="EPSG:4326"
231
+ minx="-36.9694" miny="-164.887" maxx="71.3925" maxy="160.764" />
232
+ <Style>
233
+ <Name>default</Name>
234
+ <Title>default</Title>
235
+ <LegendURL width="71" height="21">
236
+ <Format>image/png</Format>
237
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=Rivers&amp;format=image/png&amp;STYLE=default"/>
238
+ </LegendURL>
239
+ </Style>
240
+ </Layer>
241
+ <Layer queryable="0" opaque="0" cascaded="0">
242
+ <Name>F101992.v4b.avg_lights_x_pct.lzw.tif</Name>
243
+ <Title>F101992.v4b.avg_lights_x_pct.lzw.tif</Title>
244
+ <CRS>EPSG:4326</CRS>
245
+ <EX_GeographicBoundingBox>
246
+ <westBoundLongitude>-180</westBoundLongitude>
247
+ <eastBoundLongitude>180</eastBoundLongitude>
248
+ <southBoundLatitude>-65</southBoundLatitude>
249
+ <northBoundLatitude>75</northBoundLatitude>
250
+ </EX_GeographicBoundingBox>
251
+ <BoundingBox CRS="EPSG:4326"
252
+ minx="-65" miny="-180" maxx="75" maxy="180" />
253
+ </Layer>
254
+ <Layer queryable="0" opaque="0" cascaded="0">
255
+ <Name>F101992.v4b_web.avg_vis.lzw.tif</Name>
256
+ <Title>F101992.v4b_web.avg_vis.lzw.tif</Title>
257
+ <CRS>EPSG:4326</CRS>
258
+ <EX_GeographicBoundingBox>
259
+ <westBoundLongitude>-180</westBoundLongitude>
260
+ <eastBoundLongitude>180</eastBoundLongitude>
261
+ <southBoundLatitude>-65</southBoundLatitude>
262
+ <northBoundLatitude>75</northBoundLatitude>
263
+ </EX_GeographicBoundingBox>
264
+ <BoundingBox CRS="EPSG:4326"
265
+ minx="-65" miny="-180" maxx="75" maxy="180" />
266
+ </Layer>
267
+ <Layer queryable="0" opaque="0" cascaded="0">
268
+ <Name>F101992.v4b_web.cf_cvg.lzw.tif</Name>
269
+ <Title>F101992.v4b_web.cf_cvg.lzw.tif</Title>
270
+ <CRS>EPSG:4326</CRS>
271
+ <EX_GeographicBoundingBox>
272
+ <westBoundLongitude>-180</westBoundLongitude>
273
+ <eastBoundLongitude>180</eastBoundLongitude>
274
+ <southBoundLatitude>-65</southBoundLatitude>
275
+ <northBoundLatitude>75</northBoundLatitude>
276
+ </EX_GeographicBoundingBox>
277
+ <BoundingBox CRS="EPSG:4326"
278
+ minx="-65" miny="-180" maxx="75" maxy="180" />
279
+ </Layer>
280
+ <Layer queryable="0" opaque="0" cascaded="0">
281
+ <Name>F101992.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
282
+ <Title>F101992.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
283
+ <CRS>EPSG:4326</CRS>
284
+ <EX_GeographicBoundingBox>
285
+ <westBoundLongitude>-180</westBoundLongitude>
286
+ <eastBoundLongitude>180</eastBoundLongitude>
287
+ <southBoundLatitude>-65</southBoundLatitude>
288
+ <northBoundLatitude>75</northBoundLatitude>
289
+ </EX_GeographicBoundingBox>
290
+ <BoundingBox CRS="EPSG:4326"
291
+ minx="-65" miny="-180" maxx="75" maxy="180" />
292
+ </Layer>
293
+ <Layer queryable="0" opaque="0" cascaded="0">
294
+ <Name>F101993.v4b.avg_lights_x_pct.lzw.tif</Name>
295
+ <Title>F101993.v4b.avg_lights_x_pct.lzw.tif</Title>
296
+ <CRS>EPSG:4326</CRS>
297
+ <EX_GeographicBoundingBox>
298
+ <westBoundLongitude>-180</westBoundLongitude>
299
+ <eastBoundLongitude>180</eastBoundLongitude>
300
+ <southBoundLatitude>-65</southBoundLatitude>
301
+ <northBoundLatitude>75</northBoundLatitude>
302
+ </EX_GeographicBoundingBox>
303
+ <BoundingBox CRS="EPSG:4326"
304
+ minx="-65" miny="-180" maxx="75" maxy="180" />
305
+ </Layer>
306
+ <Layer queryable="0" opaque="0" cascaded="0">
307
+ <Name>F101993.v4b_web.avg_vis.lzw.tif</Name>
308
+ <Title>F101993.v4b_web.avg_vis.lzw.tif</Title>
309
+ <CRS>EPSG:4326</CRS>
310
+ <EX_GeographicBoundingBox>
311
+ <westBoundLongitude>-180</westBoundLongitude>
312
+ <eastBoundLongitude>180</eastBoundLongitude>
313
+ <southBoundLatitude>-65</southBoundLatitude>
314
+ <northBoundLatitude>75</northBoundLatitude>
315
+ </EX_GeographicBoundingBox>
316
+ <BoundingBox CRS="EPSG:4326"
317
+ minx="-65" miny="-180" maxx="75" maxy="180" />
318
+ </Layer>
319
+ <Layer queryable="0" opaque="0" cascaded="0">
320
+ <Name>F101993.v4b_web.cf_cvg.lzw.tif</Name>
321
+ <Title>F101993.v4b_web.cf_cvg.lzw.tif</Title>
322
+ <CRS>EPSG:4326</CRS>
323
+ <EX_GeographicBoundingBox>
324
+ <westBoundLongitude>-180</westBoundLongitude>
325
+ <eastBoundLongitude>180</eastBoundLongitude>
326
+ <southBoundLatitude>-65</southBoundLatitude>
327
+ <northBoundLatitude>75</northBoundLatitude>
328
+ </EX_GeographicBoundingBox>
329
+ <BoundingBox CRS="EPSG:4326"
330
+ minx="-65" miny="-180" maxx="75" maxy="180" />
331
+ </Layer>
332
+ <Layer queryable="0" opaque="0" cascaded="0">
333
+ <Name>F101993.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
334
+ <Title>F101993.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
335
+ <CRS>EPSG:4326</CRS>
336
+ <EX_GeographicBoundingBox>
337
+ <westBoundLongitude>-180</westBoundLongitude>
338
+ <eastBoundLongitude>180</eastBoundLongitude>
339
+ <southBoundLatitude>-65</southBoundLatitude>
340
+ <northBoundLatitude>75</northBoundLatitude>
341
+ </EX_GeographicBoundingBox>
342
+ <BoundingBox CRS="EPSG:4326"
343
+ minx="-65" miny="-180" maxx="75" maxy="180" />
344
+ </Layer>
345
+ <Layer queryable="0" opaque="0" cascaded="0">
346
+ <Name>F101994.v4b.avg_lights_x_pct.lzw.tif</Name>
347
+ <Title>F101994.v4b.avg_lights_x_pct.lzw.tif</Title>
348
+ <CRS>EPSG:4326</CRS>
349
+ <EX_GeographicBoundingBox>
350
+ <westBoundLongitude>-180</westBoundLongitude>
351
+ <eastBoundLongitude>180</eastBoundLongitude>
352
+ <southBoundLatitude>-65</southBoundLatitude>
353
+ <northBoundLatitude>75</northBoundLatitude>
354
+ </EX_GeographicBoundingBox>
355
+ <BoundingBox CRS="EPSG:4326"
356
+ minx="-65" miny="-180" maxx="75" maxy="180" />
357
+ </Layer>
358
+ <Layer queryable="0" opaque="0" cascaded="0">
359
+ <Name>F101994.v4b_web.avg_vis.lzw.tif</Name>
360
+ <Title>F101994.v4b_web.avg_vis.lzw.tif</Title>
361
+ <CRS>EPSG:4326</CRS>
362
+ <EX_GeographicBoundingBox>
363
+ <westBoundLongitude>-180</westBoundLongitude>
364
+ <eastBoundLongitude>180</eastBoundLongitude>
365
+ <southBoundLatitude>-65</southBoundLatitude>
366
+ <northBoundLatitude>75</northBoundLatitude>
367
+ </EX_GeographicBoundingBox>
368
+ <BoundingBox CRS="EPSG:4326"
369
+ minx="-65" miny="-180" maxx="75" maxy="180" />
370
+ </Layer>
371
+ <Layer queryable="0" opaque="0" cascaded="0">
372
+ <Name>F101994.v4b_web.cf_cvg.lzw.tif</Name>
373
+ <Title>F101994.v4b_web.cf_cvg.lzw.tif</Title>
374
+ <CRS>EPSG:4326</CRS>
375
+ <EX_GeographicBoundingBox>
376
+ <westBoundLongitude>-180</westBoundLongitude>
377
+ <eastBoundLongitude>180</eastBoundLongitude>
378
+ <southBoundLatitude>-65</southBoundLatitude>
379
+ <northBoundLatitude>75</northBoundLatitude>
380
+ </EX_GeographicBoundingBox>
381
+ <BoundingBox CRS="EPSG:4326"
382
+ minx="-65" miny="-180" maxx="75" maxy="180" />
383
+ </Layer>
384
+ <Layer queryable="0" opaque="0" cascaded="0">
385
+ <Name>F101994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
386
+ <Title>F101994.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
387
+ <CRS>EPSG:4326</CRS>
388
+ <EX_GeographicBoundingBox>
389
+ <westBoundLongitude>-180</westBoundLongitude>
390
+ <eastBoundLongitude>180</eastBoundLongitude>
391
+ <southBoundLatitude>-65</southBoundLatitude>
392
+ <northBoundLatitude>75</northBoundLatitude>
393
+ </EX_GeographicBoundingBox>
394
+ <BoundingBox CRS="EPSG:4326"
395
+ minx="-65" miny="-180" maxx="75" maxy="180" />
396
+ </Layer>
397
+ <Layer queryable="0" opaque="0" cascaded="0">
398
+ <Name>F121994.v4b.avg_lights_x_pct.lzw.tif</Name>
399
+ <Title>F121994.v4b.avg_lights_x_pct.lzw.tif</Title>
400
+ <CRS>EPSG:4326</CRS>
401
+ <EX_GeographicBoundingBox>
402
+ <westBoundLongitude>-180</westBoundLongitude>
403
+ <eastBoundLongitude>180</eastBoundLongitude>
404
+ <southBoundLatitude>-65</southBoundLatitude>
405
+ <northBoundLatitude>75</northBoundLatitude>
406
+ </EX_GeographicBoundingBox>
407
+ <BoundingBox CRS="EPSG:4326"
408
+ minx="-65" miny="-180" maxx="75" maxy="180" />
409
+ </Layer>
410
+ <Layer queryable="0" opaque="0" cascaded="0">
411
+ <Name>F121994.v4b_web.avg_vis.lzw.tif</Name>
412
+ <Title>F121994.v4b_web.avg_vis.lzw.tif</Title>
413
+ <CRS>EPSG:4326</CRS>
414
+ <EX_GeographicBoundingBox>
415
+ <westBoundLongitude>-180</westBoundLongitude>
416
+ <eastBoundLongitude>180</eastBoundLongitude>
417
+ <southBoundLatitude>-65</southBoundLatitude>
418
+ <northBoundLatitude>75</northBoundLatitude>
419
+ </EX_GeographicBoundingBox>
420
+ <BoundingBox CRS="EPSG:4326"
421
+ minx="-65" miny="-180" maxx="75" maxy="180" />
422
+ </Layer>
423
+ <Layer queryable="0" opaque="0" cascaded="0">
424
+ <Name>F121994.v4b_web.cf_cvg.lzw.tif</Name>
425
+ <Title>F121994.v4b_web.cf_cvg.lzw.tif</Title>
426
+ <CRS>EPSG:4326</CRS>
427
+ <EX_GeographicBoundingBox>
428
+ <westBoundLongitude>-180</westBoundLongitude>
429
+ <eastBoundLongitude>180</eastBoundLongitude>
430
+ <southBoundLatitude>-65</southBoundLatitude>
431
+ <northBoundLatitude>75</northBoundLatitude>
432
+ </EX_GeographicBoundingBox>
433
+ <BoundingBox CRS="EPSG:4326"
434
+ minx="-65" miny="-180" maxx="75" maxy="180" />
435
+ </Layer>
436
+ <Layer queryable="0" opaque="0" cascaded="0">
437
+ <Name>F121994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
438
+ <Title>F121994.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
439
+ <CRS>EPSG:4326</CRS>
440
+ <EX_GeographicBoundingBox>
441
+ <westBoundLongitude>-180</westBoundLongitude>
442
+ <eastBoundLongitude>180</eastBoundLongitude>
443
+ <southBoundLatitude>-65</southBoundLatitude>
444
+ <northBoundLatitude>75</northBoundLatitude>
445
+ </EX_GeographicBoundingBox>
446
+ <BoundingBox CRS="EPSG:4326"
447
+ minx="-65" miny="-180" maxx="75" maxy="180" />
448
+ </Layer>
449
+ <Layer queryable="0" opaque="0" cascaded="0">
450
+ <Name>F121995.v4b.avg_lights_x_pct.lzw.tif</Name>
451
+ <Title>F121995.v4b.avg_lights_x_pct.lzw.tif</Title>
452
+ <CRS>EPSG:4326</CRS>
453
+ <EX_GeographicBoundingBox>
454
+ <westBoundLongitude>-180</westBoundLongitude>
455
+ <eastBoundLongitude>180</eastBoundLongitude>
456
+ <southBoundLatitude>-65</southBoundLatitude>
457
+ <northBoundLatitude>75</northBoundLatitude>
458
+ </EX_GeographicBoundingBox>
459
+ <BoundingBox CRS="EPSG:4326"
460
+ minx="-65" miny="-180" maxx="75" maxy="180" />
461
+ </Layer>
462
+ <Layer queryable="0" opaque="0" cascaded="0">
463
+ <Name>F121995.v4b_web.avg_vis.lzw.tif</Name>
464
+ <Title>F121995.v4b_web.avg_vis.lzw.tif</Title>
465
+ <CRS>EPSG:4326</CRS>
466
+ <EX_GeographicBoundingBox>
467
+ <westBoundLongitude>-180</westBoundLongitude>
468
+ <eastBoundLongitude>180</eastBoundLongitude>
469
+ <southBoundLatitude>-65</southBoundLatitude>
470
+ <northBoundLatitude>75</northBoundLatitude>
471
+ </EX_GeographicBoundingBox>
472
+ <BoundingBox CRS="EPSG:4326"
473
+ minx="-65" miny="-180" maxx="75" maxy="180" />
474
+ </Layer>
475
+ <Layer queryable="0" opaque="0" cascaded="0">
476
+ <Name>F121995.v4b_web.cf_cvg.lzw.tif</Name>
477
+ <Title>F121995.v4b_web.cf_cvg.lzw.tif</Title>
478
+ <CRS>EPSG:4326</CRS>
479
+ <EX_GeographicBoundingBox>
480
+ <westBoundLongitude>-180</westBoundLongitude>
481
+ <eastBoundLongitude>180</eastBoundLongitude>
482
+ <southBoundLatitude>-65</southBoundLatitude>
483
+ <northBoundLatitude>75</northBoundLatitude>
484
+ </EX_GeographicBoundingBox>
485
+ <BoundingBox CRS="EPSG:4326"
486
+ minx="-65" miny="-180" maxx="75" maxy="180" />
487
+ </Layer>
488
+ <Layer queryable="0" opaque="0" cascaded="0">
489
+ <Name>F121995.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
490
+ <Title>F121995.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
491
+ <CRS>EPSG:4326</CRS>
492
+ <EX_GeographicBoundingBox>
493
+ <westBoundLongitude>-180</westBoundLongitude>
494
+ <eastBoundLongitude>180</eastBoundLongitude>
495
+ <southBoundLatitude>-65</southBoundLatitude>
496
+ <northBoundLatitude>75</northBoundLatitude>
497
+ </EX_GeographicBoundingBox>
498
+ <BoundingBox CRS="EPSG:4326"
499
+ minx="-65" miny="-180" maxx="75" maxy="180" />
500
+ </Layer>
501
+ <Layer queryable="0" opaque="0" cascaded="0">
502
+ <Name>F121996.v4b.avg_lights_x_pct.lzw.tif</Name>
503
+ <Title>F121996.v4b.avg_lights_x_pct.lzw.tif</Title>
504
+ <CRS>EPSG:4326</CRS>
505
+ <EX_GeographicBoundingBox>
506
+ <westBoundLongitude>-180</westBoundLongitude>
507
+ <eastBoundLongitude>180</eastBoundLongitude>
508
+ <southBoundLatitude>-65</southBoundLatitude>
509
+ <northBoundLatitude>75</northBoundLatitude>
510
+ </EX_GeographicBoundingBox>
511
+ <BoundingBox CRS="EPSG:4326"
512
+ minx="-65" miny="-180" maxx="75" maxy="180" />
513
+ </Layer>
514
+ <Layer queryable="0" opaque="0" cascaded="0">
515
+ <Name>F121996.v4b_web.avg_vis.lzw.tif</Name>
516
+ <Title>F121996.v4b_web.avg_vis.lzw.tif</Title>
517
+ <CRS>EPSG:4326</CRS>
518
+ <EX_GeographicBoundingBox>
519
+ <westBoundLongitude>-180</westBoundLongitude>
520
+ <eastBoundLongitude>180</eastBoundLongitude>
521
+ <southBoundLatitude>-65</southBoundLatitude>
522
+ <northBoundLatitude>75</northBoundLatitude>
523
+ </EX_GeographicBoundingBox>
524
+ <BoundingBox CRS="EPSG:4326"
525
+ minx="-65" miny="-180" maxx="75" maxy="180" />
526
+ </Layer>
527
+ <Layer queryable="0" opaque="0" cascaded="0">
528
+ <Name>F121996.v4b_web.cf_cvg.lzw.tif</Name>
529
+ <Title>F121996.v4b_web.cf_cvg.lzw.tif</Title>
530
+ <CRS>EPSG:4326</CRS>
531
+ <EX_GeographicBoundingBox>
532
+ <westBoundLongitude>-180</westBoundLongitude>
533
+ <eastBoundLongitude>180</eastBoundLongitude>
534
+ <southBoundLatitude>-65</southBoundLatitude>
535
+ <northBoundLatitude>75</northBoundLatitude>
536
+ </EX_GeographicBoundingBox>
537
+ <BoundingBox CRS="EPSG:4326"
538
+ minx="-65" miny="-180" maxx="75" maxy="180" />
539
+ </Layer>
540
+ <Layer queryable="0" opaque="0" cascaded="0">
541
+ <Name>F121996.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
542
+ <Title>F121996.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
543
+ <CRS>EPSG:4326</CRS>
544
+ <EX_GeographicBoundingBox>
545
+ <westBoundLongitude>-180</westBoundLongitude>
546
+ <eastBoundLongitude>180</eastBoundLongitude>
547
+ <southBoundLatitude>-65</southBoundLatitude>
548
+ <northBoundLatitude>75</northBoundLatitude>
549
+ </EX_GeographicBoundingBox>
550
+ <BoundingBox CRS="EPSG:4326"
551
+ minx="-65" miny="-180" maxx="75" maxy="180" />
552
+ </Layer>
553
+ <Layer queryable="0" opaque="0" cascaded="0">
554
+ <Name>F121997.v4b.avg_lights_x_pct.lzw.tif</Name>
555
+ <Title>F121997.v4b.avg_lights_x_pct.lzw.tif</Title>
556
+ <CRS>EPSG:4326</CRS>
557
+ <EX_GeographicBoundingBox>
558
+ <westBoundLongitude>-180</westBoundLongitude>
559
+ <eastBoundLongitude>180</eastBoundLongitude>
560
+ <southBoundLatitude>-65</southBoundLatitude>
561
+ <northBoundLatitude>75</northBoundLatitude>
562
+ </EX_GeographicBoundingBox>
563
+ <BoundingBox CRS="EPSG:4326"
564
+ minx="-65" miny="-180" maxx="75" maxy="180" />
565
+ </Layer>
566
+ <Layer queryable="0" opaque="0" cascaded="0">
567
+ <Name>F121997.v4b_web.avg_vis.lzw.tif</Name>
568
+ <Title>F121997.v4b_web.avg_vis.lzw.tif</Title>
569
+ <CRS>EPSG:4326</CRS>
570
+ <EX_GeographicBoundingBox>
571
+ <westBoundLongitude>-180</westBoundLongitude>
572
+ <eastBoundLongitude>180</eastBoundLongitude>
573
+ <southBoundLatitude>-65</southBoundLatitude>
574
+ <northBoundLatitude>75</northBoundLatitude>
575
+ </EX_GeographicBoundingBox>
576
+ <BoundingBox CRS="EPSG:4326"
577
+ minx="-65" miny="-180" maxx="75" maxy="180" />
578
+ </Layer>
579
+ <Layer queryable="0" opaque="0" cascaded="0">
580
+ <Name>F121997.v4b_web.cf_cvg.lzw.tif</Name>
581
+ <Title>F121997.v4b_web.cf_cvg.lzw.tif</Title>
582
+ <CRS>EPSG:4326</CRS>
583
+ <EX_GeographicBoundingBox>
584
+ <westBoundLongitude>-180</westBoundLongitude>
585
+ <eastBoundLongitude>180</eastBoundLongitude>
586
+ <southBoundLatitude>-65</southBoundLatitude>
587
+ <northBoundLatitude>75</northBoundLatitude>
588
+ </EX_GeographicBoundingBox>
589
+ <BoundingBox CRS="EPSG:4326"
590
+ minx="-65" miny="-180" maxx="75" maxy="180" />
591
+ </Layer>
592
+ <Layer queryable="0" opaque="0" cascaded="0">
593
+ <Name>F121997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
594
+ <Title>F121997.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
595
+ <CRS>EPSG:4326</CRS>
596
+ <EX_GeographicBoundingBox>
597
+ <westBoundLongitude>-180</westBoundLongitude>
598
+ <eastBoundLongitude>180</eastBoundLongitude>
599
+ <southBoundLatitude>-65</southBoundLatitude>
600
+ <northBoundLatitude>75</northBoundLatitude>
601
+ </EX_GeographicBoundingBox>
602
+ <BoundingBox CRS="EPSG:4326"
603
+ minx="-65" miny="-180" maxx="75" maxy="180" />
604
+ </Layer>
605
+ <Layer queryable="0" opaque="0" cascaded="0">
606
+ <Name>F121998.v4b.avg_lights_x_pct.lzw.tif</Name>
607
+ <Title>F121998.v4b.avg_lights_x_pct.lzw.tif</Title>
608
+ <CRS>EPSG:4326</CRS>
609
+ <EX_GeographicBoundingBox>
610
+ <westBoundLongitude>-180</westBoundLongitude>
611
+ <eastBoundLongitude>180</eastBoundLongitude>
612
+ <southBoundLatitude>-65</southBoundLatitude>
613
+ <northBoundLatitude>75</northBoundLatitude>
614
+ </EX_GeographicBoundingBox>
615
+ <BoundingBox CRS="EPSG:4326"
616
+ minx="-65" miny="-180" maxx="75" maxy="180" />
617
+ </Layer>
618
+ <Layer queryable="0" opaque="0" cascaded="0">
619
+ <Name>F121998.v4b_web.avg_vis.lzw.tif</Name>
620
+ <Title>F121998.v4b_web.avg_vis.lzw.tif</Title>
621
+ <CRS>EPSG:4326</CRS>
622
+ <EX_GeographicBoundingBox>
623
+ <westBoundLongitude>-180</westBoundLongitude>
624
+ <eastBoundLongitude>180</eastBoundLongitude>
625
+ <southBoundLatitude>-65</southBoundLatitude>
626
+ <northBoundLatitude>75</northBoundLatitude>
627
+ </EX_GeographicBoundingBox>
628
+ <BoundingBox CRS="EPSG:4326"
629
+ minx="-65" miny="-180" maxx="75" maxy="180" />
630
+ </Layer>
631
+ <Layer queryable="0" opaque="0" cascaded="0">
632
+ <Name>F121998.v4b_web.cf_cvg.lzw.tif</Name>
633
+ <Title>F121998.v4b_web.cf_cvg.lzw.tif</Title>
634
+ <CRS>EPSG:4326</CRS>
635
+ <EX_GeographicBoundingBox>
636
+ <westBoundLongitude>-180</westBoundLongitude>
637
+ <eastBoundLongitude>180</eastBoundLongitude>
638
+ <southBoundLatitude>-65</southBoundLatitude>
639
+ <northBoundLatitude>75</northBoundLatitude>
640
+ </EX_GeographicBoundingBox>
641
+ <BoundingBox CRS="EPSG:4326"
642
+ minx="-65" miny="-180" maxx="75" maxy="180" />
643
+ </Layer>
644
+ <Layer queryable="0" opaque="0" cascaded="0">
645
+ <Name>F121998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
646
+ <Title>F121998.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
647
+ <CRS>EPSG:4326</CRS>
648
+ <EX_GeographicBoundingBox>
649
+ <westBoundLongitude>-180</westBoundLongitude>
650
+ <eastBoundLongitude>180</eastBoundLongitude>
651
+ <southBoundLatitude>-65</southBoundLatitude>
652
+ <northBoundLatitude>75</northBoundLatitude>
653
+ </EX_GeographicBoundingBox>
654
+ <BoundingBox CRS="EPSG:4326"
655
+ minx="-65" miny="-180" maxx="75" maxy="180" />
656
+ </Layer>
657
+ <Layer queryable="0" opaque="0" cascaded="0">
658
+ <Name>F121999.v4b.avg_lights_x_pct.lzw.tif</Name>
659
+ <Title>F121999.v4b.avg_lights_x_pct.lzw.tif</Title>
660
+ <CRS>EPSG:4326</CRS>
661
+ <EX_GeographicBoundingBox>
662
+ <westBoundLongitude>-180</westBoundLongitude>
663
+ <eastBoundLongitude>180</eastBoundLongitude>
664
+ <southBoundLatitude>-65</southBoundLatitude>
665
+ <northBoundLatitude>75</northBoundLatitude>
666
+ </EX_GeographicBoundingBox>
667
+ <BoundingBox CRS="EPSG:4326"
668
+ minx="-65" miny="-180" maxx="75" maxy="180" />
669
+ </Layer>
670
+ <Layer queryable="0" opaque="0" cascaded="0">
671
+ <Name>F121999.v4b_web.avg_vis.lzw.tif</Name>
672
+ <Title>F121999.v4b_web.avg_vis.lzw.tif</Title>
673
+ <CRS>EPSG:4326</CRS>
674
+ <EX_GeographicBoundingBox>
675
+ <westBoundLongitude>-180</westBoundLongitude>
676
+ <eastBoundLongitude>180</eastBoundLongitude>
677
+ <southBoundLatitude>-65</southBoundLatitude>
678
+ <northBoundLatitude>75</northBoundLatitude>
679
+ </EX_GeographicBoundingBox>
680
+ <BoundingBox CRS="EPSG:4326"
681
+ minx="-65" miny="-180" maxx="75" maxy="180" />
682
+ </Layer>
683
+ <Layer queryable="0" opaque="0" cascaded="0">
684
+ <Name>F121999.v4b_web.cf_cvg.lzw.tif</Name>
685
+ <Title>F121999.v4b_web.cf_cvg.lzw.tif</Title>
686
+ <CRS>EPSG:4326</CRS>
687
+ <EX_GeographicBoundingBox>
688
+ <westBoundLongitude>-180</westBoundLongitude>
689
+ <eastBoundLongitude>180</eastBoundLongitude>
690
+ <southBoundLatitude>-65</southBoundLatitude>
691
+ <northBoundLatitude>75</northBoundLatitude>
692
+ </EX_GeographicBoundingBox>
693
+ <BoundingBox CRS="EPSG:4326"
694
+ minx="-65" miny="-180" maxx="75" maxy="180" />
695
+ </Layer>
696
+ <Layer queryable="0" opaque="0" cascaded="0">
697
+ <Name>F121999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
698
+ <Title>F121999.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
699
+ <CRS>EPSG:4326</CRS>
700
+ <EX_GeographicBoundingBox>
701
+ <westBoundLongitude>-180</westBoundLongitude>
702
+ <eastBoundLongitude>180</eastBoundLongitude>
703
+ <southBoundLatitude>-65</southBoundLatitude>
704
+ <northBoundLatitude>75</northBoundLatitude>
705
+ </EX_GeographicBoundingBox>
706
+ <BoundingBox CRS="EPSG:4326"
707
+ minx="-65" miny="-180" maxx="75" maxy="180" />
708
+ </Layer>
709
+ <Layer queryable="0" opaque="0" cascaded="0">
710
+ <Name>F141997.v4b.avg_lights_x_pct.lzw.tif</Name>
711
+ <Title>F141997.v4b.avg_lights_x_pct.lzw.tif</Title>
712
+ <CRS>EPSG:4326</CRS>
713
+ <EX_GeographicBoundingBox>
714
+ <westBoundLongitude>-180</westBoundLongitude>
715
+ <eastBoundLongitude>180</eastBoundLongitude>
716
+ <southBoundLatitude>-65</southBoundLatitude>
717
+ <northBoundLatitude>75</northBoundLatitude>
718
+ </EX_GeographicBoundingBox>
719
+ <BoundingBox CRS="EPSG:4326"
720
+ minx="-65" miny="-180" maxx="75" maxy="180" />
721
+ </Layer>
722
+ <Layer queryable="0" opaque="0" cascaded="0">
723
+ <Name>F141997.v4b_web.avg_vis.lzw.tif</Name>
724
+ <Title>F141997.v4b_web.avg_vis.lzw.tif</Title>
725
+ <CRS>EPSG:4326</CRS>
726
+ <EX_GeographicBoundingBox>
727
+ <westBoundLongitude>-180</westBoundLongitude>
728
+ <eastBoundLongitude>180</eastBoundLongitude>
729
+ <southBoundLatitude>-65</southBoundLatitude>
730
+ <northBoundLatitude>75</northBoundLatitude>
731
+ </EX_GeographicBoundingBox>
732
+ <BoundingBox CRS="EPSG:4326"
733
+ minx="-65" miny="-180" maxx="75" maxy="180" />
734
+ </Layer>
735
+ <Layer queryable="0" opaque="0" cascaded="0">
736
+ <Name>F141997.v4b_web.cf_cvg.lzw.tif</Name>
737
+ <Title>F141997.v4b_web.cf_cvg.lzw.tif</Title>
738
+ <CRS>EPSG:4326</CRS>
739
+ <EX_GeographicBoundingBox>
740
+ <westBoundLongitude>-180</westBoundLongitude>
741
+ <eastBoundLongitude>180</eastBoundLongitude>
742
+ <southBoundLatitude>-65</southBoundLatitude>
743
+ <northBoundLatitude>75</northBoundLatitude>
744
+ </EX_GeographicBoundingBox>
745
+ <BoundingBox CRS="EPSG:4326"
746
+ minx="-65" miny="-180" maxx="75" maxy="180" />
747
+ </Layer>
748
+ <Layer queryable="0" opaque="0" cascaded="0">
749
+ <Name>F141997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
750
+ <Title>F141997.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
751
+ <CRS>EPSG:4326</CRS>
752
+ <EX_GeographicBoundingBox>
753
+ <westBoundLongitude>-180</westBoundLongitude>
754
+ <eastBoundLongitude>180</eastBoundLongitude>
755
+ <southBoundLatitude>-65</southBoundLatitude>
756
+ <northBoundLatitude>75</northBoundLatitude>
757
+ </EX_GeographicBoundingBox>
758
+ <BoundingBox CRS="EPSG:4326"
759
+ minx="-65" miny="-180" maxx="75" maxy="180" />
760
+ </Layer>
761
+ <Layer queryable="0" opaque="0" cascaded="0">
762
+ <Name>F141998.v4b.avg_lights_x_pct.lzw.tif</Name>
763
+ <Title>F141998.v4b.avg_lights_x_pct.lzw.tif</Title>
764
+ <CRS>EPSG:4326</CRS>
765
+ <EX_GeographicBoundingBox>
766
+ <westBoundLongitude>-180</westBoundLongitude>
767
+ <eastBoundLongitude>180</eastBoundLongitude>
768
+ <southBoundLatitude>-65</southBoundLatitude>
769
+ <northBoundLatitude>75</northBoundLatitude>
770
+ </EX_GeographicBoundingBox>
771
+ <BoundingBox CRS="EPSG:4326"
772
+ minx="-65" miny="-180" maxx="75" maxy="180" />
773
+ </Layer>
774
+ <Layer queryable="0" opaque="0" cascaded="0">
775
+ <Name>F141998.v4b_web.avg_vis.lzw.tif</Name>
776
+ <Title>F141998.v4b_web.avg_vis.lzw.tif</Title>
777
+ <CRS>EPSG:4326</CRS>
778
+ <EX_GeographicBoundingBox>
779
+ <westBoundLongitude>-180</westBoundLongitude>
780
+ <eastBoundLongitude>180</eastBoundLongitude>
781
+ <southBoundLatitude>-65</southBoundLatitude>
782
+ <northBoundLatitude>75</northBoundLatitude>
783
+ </EX_GeographicBoundingBox>
784
+ <BoundingBox CRS="EPSG:4326"
785
+ minx="-65" miny="-180" maxx="75" maxy="180" />
786
+ </Layer>
787
+ <Layer queryable="0" opaque="0" cascaded="0">
788
+ <Name>F141998.v4b_web.cf_cvg.lzw.tif</Name>
789
+ <Title>F141998.v4b_web.cf_cvg.lzw.tif</Title>
790
+ <CRS>EPSG:4326</CRS>
791
+ <EX_GeographicBoundingBox>
792
+ <westBoundLongitude>-180</westBoundLongitude>
793
+ <eastBoundLongitude>180</eastBoundLongitude>
794
+ <southBoundLatitude>-65</southBoundLatitude>
795
+ <northBoundLatitude>75</northBoundLatitude>
796
+ </EX_GeographicBoundingBox>
797
+ <BoundingBox CRS="EPSG:4326"
798
+ minx="-65" miny="-180" maxx="75" maxy="180" />
799
+ </Layer>
800
+ <Layer queryable="0" opaque="0" cascaded="0">
801
+ <Name>F141998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
802
+ <Title>F141998.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
803
+ <CRS>EPSG:4326</CRS>
804
+ <EX_GeographicBoundingBox>
805
+ <westBoundLongitude>-180</westBoundLongitude>
806
+ <eastBoundLongitude>180</eastBoundLongitude>
807
+ <southBoundLatitude>-65</southBoundLatitude>
808
+ <northBoundLatitude>75</northBoundLatitude>
809
+ </EX_GeographicBoundingBox>
810
+ <BoundingBox CRS="EPSG:4326"
811
+ minx="-65" miny="-180" maxx="75" maxy="180" />
812
+ </Layer>
813
+ <Layer queryable="0" opaque="0" cascaded="0">
814
+ <Name>F141999.v4b.avg_lights_x_pct.lzw.tif</Name>
815
+ <Title>F141999.v4b.avg_lights_x_pct.lzw.tif</Title>
816
+ <CRS>EPSG:4326</CRS>
817
+ <EX_GeographicBoundingBox>
818
+ <westBoundLongitude>-180</westBoundLongitude>
819
+ <eastBoundLongitude>180</eastBoundLongitude>
820
+ <southBoundLatitude>-65</southBoundLatitude>
821
+ <northBoundLatitude>75</northBoundLatitude>
822
+ </EX_GeographicBoundingBox>
823
+ <BoundingBox CRS="EPSG:4326"
824
+ minx="-65" miny="-180" maxx="75" maxy="180" />
825
+ </Layer>
826
+ <Layer queryable="0" opaque="0" cascaded="0">
827
+ <Name>F141999.v4b_web.avg_vis.lzw.tif</Name>
828
+ <Title>F141999.v4b_web.avg_vis.lzw.tif</Title>
829
+ <CRS>EPSG:4326</CRS>
830
+ <EX_GeographicBoundingBox>
831
+ <westBoundLongitude>-180</westBoundLongitude>
832
+ <eastBoundLongitude>180</eastBoundLongitude>
833
+ <southBoundLatitude>-65</southBoundLatitude>
834
+ <northBoundLatitude>75</northBoundLatitude>
835
+ </EX_GeographicBoundingBox>
836
+ <BoundingBox CRS="EPSG:4326"
837
+ minx="-65" miny="-180" maxx="75" maxy="180" />
838
+ </Layer>
839
+ <Layer queryable="0" opaque="0" cascaded="0">
840
+ <Name>F141999.v4b_web.cf_cvg.lzw.tif</Name>
841
+ <Title>F141999.v4b_web.cf_cvg.lzw.tif</Title>
842
+ <CRS>EPSG:4326</CRS>
843
+ <EX_GeographicBoundingBox>
844
+ <westBoundLongitude>-180</westBoundLongitude>
845
+ <eastBoundLongitude>180</eastBoundLongitude>
846
+ <southBoundLatitude>-65</southBoundLatitude>
847
+ <northBoundLatitude>75</northBoundLatitude>
848
+ </EX_GeographicBoundingBox>
849
+ <BoundingBox CRS="EPSG:4326"
850
+ minx="-65" miny="-180" maxx="75" maxy="180" />
851
+ </Layer>
852
+ <Layer queryable="0" opaque="0" cascaded="0">
853
+ <Name>F141999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
854
+ <Title>F141999.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
855
+ <CRS>EPSG:4326</CRS>
856
+ <EX_GeographicBoundingBox>
857
+ <westBoundLongitude>-180</westBoundLongitude>
858
+ <eastBoundLongitude>180</eastBoundLongitude>
859
+ <southBoundLatitude>-65</southBoundLatitude>
860
+ <northBoundLatitude>75</northBoundLatitude>
861
+ </EX_GeographicBoundingBox>
862
+ <BoundingBox CRS="EPSG:4326"
863
+ minx="-65" miny="-180" maxx="75" maxy="180" />
864
+ </Layer>
865
+ <Layer queryable="0" opaque="0" cascaded="0">
866
+ <Name>F142000.v4b.avg_lights_x_pct.lzw.tif</Name>
867
+ <Title>F142000.v4b.avg_lights_x_pct.lzw.tif</Title>
868
+ <CRS>EPSG:4326</CRS>
869
+ <EX_GeographicBoundingBox>
870
+ <westBoundLongitude>-180</westBoundLongitude>
871
+ <eastBoundLongitude>180</eastBoundLongitude>
872
+ <southBoundLatitude>-65</southBoundLatitude>
873
+ <northBoundLatitude>75</northBoundLatitude>
874
+ </EX_GeographicBoundingBox>
875
+ <BoundingBox CRS="EPSG:4326"
876
+ minx="-65" miny="-180" maxx="75" maxy="180" />
877
+ </Layer>
878
+ <Layer queryable="0" opaque="0" cascaded="0">
879
+ <Name>F142000.v4b_web.avg_vis.lzw.tif</Name>
880
+ <Title>F142000.v4b_web.avg_vis.lzw.tif</Title>
881
+ <CRS>EPSG:4326</CRS>
882
+ <EX_GeographicBoundingBox>
883
+ <westBoundLongitude>-180</westBoundLongitude>
884
+ <eastBoundLongitude>180</eastBoundLongitude>
885
+ <southBoundLatitude>-65</southBoundLatitude>
886
+ <northBoundLatitude>75</northBoundLatitude>
887
+ </EX_GeographicBoundingBox>
888
+ <BoundingBox CRS="EPSG:4326"
889
+ minx="-65" miny="-180" maxx="75" maxy="180" />
890
+ </Layer>
891
+ <Layer queryable="0" opaque="0" cascaded="0">
892
+ <Name>F142000.v4b_web.cf_cvg.lzw.tif</Name>
893
+ <Title>F142000.v4b_web.cf_cvg.lzw.tif</Title>
894
+ <CRS>EPSG:4326</CRS>
895
+ <EX_GeographicBoundingBox>
896
+ <westBoundLongitude>-180</westBoundLongitude>
897
+ <eastBoundLongitude>180</eastBoundLongitude>
898
+ <southBoundLatitude>-65</southBoundLatitude>
899
+ <northBoundLatitude>75</northBoundLatitude>
900
+ </EX_GeographicBoundingBox>
901
+ <BoundingBox CRS="EPSG:4326"
902
+ minx="-65" miny="-180" maxx="75" maxy="180" />
903
+ </Layer>
904
+ <Layer queryable="0" opaque="0" cascaded="0">
905
+ <Name>F142000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
906
+ <Title>F142000.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
907
+ <CRS>EPSG:4326</CRS>
908
+ <EX_GeographicBoundingBox>
909
+ <westBoundLongitude>-180</westBoundLongitude>
910
+ <eastBoundLongitude>180</eastBoundLongitude>
911
+ <southBoundLatitude>-65</southBoundLatitude>
912
+ <northBoundLatitude>75</northBoundLatitude>
913
+ </EX_GeographicBoundingBox>
914
+ <BoundingBox CRS="EPSG:4326"
915
+ minx="-65" miny="-180" maxx="75" maxy="180" />
916
+ </Layer>
917
+ <Layer queryable="0" opaque="0" cascaded="0">
918
+ <Name>F142001.v4b.avg_lights_x_pct.lzw.tif</Name>
919
+ <Title>F142001.v4b.avg_lights_x_pct.lzw.tif</Title>
920
+ <CRS>EPSG:4326</CRS>
921
+ <EX_GeographicBoundingBox>
922
+ <westBoundLongitude>-180</westBoundLongitude>
923
+ <eastBoundLongitude>180</eastBoundLongitude>
924
+ <southBoundLatitude>-65</southBoundLatitude>
925
+ <northBoundLatitude>75</northBoundLatitude>
926
+ </EX_GeographicBoundingBox>
927
+ <BoundingBox CRS="EPSG:4326"
928
+ minx="-65" miny="-180" maxx="75" maxy="180" />
929
+ </Layer>
930
+ <Layer queryable="0" opaque="0" cascaded="0">
931
+ <Name>F142001.v4b_web.avg_vis.lzw.tif</Name>
932
+ <Title>F142001.v4b_web.avg_vis.lzw.tif</Title>
933
+ <CRS>EPSG:4326</CRS>
934
+ <EX_GeographicBoundingBox>
935
+ <westBoundLongitude>-180</westBoundLongitude>
936
+ <eastBoundLongitude>180</eastBoundLongitude>
937
+ <southBoundLatitude>-65</southBoundLatitude>
938
+ <northBoundLatitude>75</northBoundLatitude>
939
+ </EX_GeographicBoundingBox>
940
+ <BoundingBox CRS="EPSG:4326"
941
+ minx="-65" miny="-180" maxx="75" maxy="180" />
942
+ </Layer>
943
+ <Layer queryable="0" opaque="0" cascaded="0">
944
+ <Name>F142001.v4b_web.cf_cvg.lzw.tif</Name>
945
+ <Title>F142001.v4b_web.cf_cvg.lzw.tif</Title>
946
+ <CRS>EPSG:4326</CRS>
947
+ <EX_GeographicBoundingBox>
948
+ <westBoundLongitude>-180</westBoundLongitude>
949
+ <eastBoundLongitude>180</eastBoundLongitude>
950
+ <southBoundLatitude>-65</southBoundLatitude>
951
+ <northBoundLatitude>75</northBoundLatitude>
952
+ </EX_GeographicBoundingBox>
953
+ <BoundingBox CRS="EPSG:4326"
954
+ minx="-65" miny="-180" maxx="75" maxy="180" />
955
+ </Layer>
956
+ <Layer queryable="0" opaque="0" cascaded="0">
957
+ <Name>F142001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
958
+ <Title>F142001.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
959
+ <CRS>EPSG:4326</CRS>
960
+ <EX_GeographicBoundingBox>
961
+ <westBoundLongitude>-180</westBoundLongitude>
962
+ <eastBoundLongitude>180</eastBoundLongitude>
963
+ <southBoundLatitude>-65</southBoundLatitude>
964
+ <northBoundLatitude>75</northBoundLatitude>
965
+ </EX_GeographicBoundingBox>
966
+ <BoundingBox CRS="EPSG:4326"
967
+ minx="-65" miny="-180" maxx="75" maxy="180" />
968
+ </Layer>
969
+ <Layer queryable="0" opaque="0" cascaded="0">
970
+ <Name>F142002.v4b.avg_lights_x_pct.lzw.tif</Name>
971
+ <Title>F142002.v4b.avg_lights_x_pct.lzw.tif</Title>
972
+ <CRS>EPSG:4326</CRS>
973
+ <EX_GeographicBoundingBox>
974
+ <westBoundLongitude>-180</westBoundLongitude>
975
+ <eastBoundLongitude>180</eastBoundLongitude>
976
+ <southBoundLatitude>-65</southBoundLatitude>
977
+ <northBoundLatitude>75</northBoundLatitude>
978
+ </EX_GeographicBoundingBox>
979
+ <BoundingBox CRS="EPSG:4326"
980
+ minx="-65" miny="-180" maxx="75" maxy="180" />
981
+ </Layer>
982
+ <Layer queryable="0" opaque="0" cascaded="0">
983
+ <Name>F142002.v4b_web.avg_vis.lzw.tif</Name>
984
+ <Title>F142002.v4b_web.avg_vis.lzw.tif</Title>
985
+ <CRS>EPSG:4326</CRS>
986
+ <EX_GeographicBoundingBox>
987
+ <westBoundLongitude>-180</westBoundLongitude>
988
+ <eastBoundLongitude>180</eastBoundLongitude>
989
+ <southBoundLatitude>-65</southBoundLatitude>
990
+ <northBoundLatitude>75</northBoundLatitude>
991
+ </EX_GeographicBoundingBox>
992
+ <BoundingBox CRS="EPSG:4326"
993
+ minx="-65" miny="-180" maxx="75" maxy="180" />
994
+ </Layer>
995
+ <Layer queryable="0" opaque="0" cascaded="0">
996
+ <Name>F142002.v4b_web.cf_cvg.lzw.tif</Name>
997
+ <Title>F142002.v4b_web.cf_cvg.lzw.tif</Title>
998
+ <CRS>EPSG:4326</CRS>
999
+ <EX_GeographicBoundingBox>
1000
+ <westBoundLongitude>-180</westBoundLongitude>
1001
+ <eastBoundLongitude>180</eastBoundLongitude>
1002
+ <southBoundLatitude>-65</southBoundLatitude>
1003
+ <northBoundLatitude>75</northBoundLatitude>
1004
+ </EX_GeographicBoundingBox>
1005
+ <BoundingBox CRS="EPSG:4326"
1006
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1007
+ </Layer>
1008
+ <Layer queryable="0" opaque="0" cascaded="0">
1009
+ <Name>F142002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1010
+ <Title>F142002.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1011
+ <CRS>EPSG:4326</CRS>
1012
+ <EX_GeographicBoundingBox>
1013
+ <westBoundLongitude>-180</westBoundLongitude>
1014
+ <eastBoundLongitude>180</eastBoundLongitude>
1015
+ <southBoundLatitude>-65</southBoundLatitude>
1016
+ <northBoundLatitude>75</northBoundLatitude>
1017
+ </EX_GeographicBoundingBox>
1018
+ <BoundingBox CRS="EPSG:4326"
1019
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1020
+ </Layer>
1021
+ <Layer queryable="0" opaque="0" cascaded="0">
1022
+ <Name>F142003.v4b.avg_lights_x_pct.lzw.tif</Name>
1023
+ <Title>F142003.v4b.avg_lights_x_pct.lzw.tif</Title>
1024
+ <CRS>EPSG:4326</CRS>
1025
+ <EX_GeographicBoundingBox>
1026
+ <westBoundLongitude>-180</westBoundLongitude>
1027
+ <eastBoundLongitude>180</eastBoundLongitude>
1028
+ <southBoundLatitude>-65</southBoundLatitude>
1029
+ <northBoundLatitude>75</northBoundLatitude>
1030
+ </EX_GeographicBoundingBox>
1031
+ <BoundingBox CRS="EPSG:4326"
1032
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1033
+ </Layer>
1034
+ <Layer queryable="0" opaque="0" cascaded="0">
1035
+ <Name>F142003.v4b_web.avg_vis.lzw.tif</Name>
1036
+ <Title>F142003.v4b_web.avg_vis.lzw.tif</Title>
1037
+ <CRS>EPSG:4326</CRS>
1038
+ <EX_GeographicBoundingBox>
1039
+ <westBoundLongitude>-180</westBoundLongitude>
1040
+ <eastBoundLongitude>180</eastBoundLongitude>
1041
+ <southBoundLatitude>-65</southBoundLatitude>
1042
+ <northBoundLatitude>75</northBoundLatitude>
1043
+ </EX_GeographicBoundingBox>
1044
+ <BoundingBox CRS="EPSG:4326"
1045
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1046
+ </Layer>
1047
+ <Layer queryable="0" opaque="0" cascaded="0">
1048
+ <Name>F142003.v4b_web.cf_cvg.lzw.tif</Name>
1049
+ <Title>F142003.v4b_web.cf_cvg.lzw.tif</Title>
1050
+ <CRS>EPSG:4326</CRS>
1051
+ <EX_GeographicBoundingBox>
1052
+ <westBoundLongitude>-180</westBoundLongitude>
1053
+ <eastBoundLongitude>180</eastBoundLongitude>
1054
+ <southBoundLatitude>-65</southBoundLatitude>
1055
+ <northBoundLatitude>75</northBoundLatitude>
1056
+ </EX_GeographicBoundingBox>
1057
+ <BoundingBox CRS="EPSG:4326"
1058
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1059
+ </Layer>
1060
+ <Layer queryable="0" opaque="0" cascaded="0">
1061
+ <Name>F142003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1062
+ <Title>F142003.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1063
+ <CRS>EPSG:4326</CRS>
1064
+ <EX_GeographicBoundingBox>
1065
+ <westBoundLongitude>-180</westBoundLongitude>
1066
+ <eastBoundLongitude>180</eastBoundLongitude>
1067
+ <southBoundLatitude>-65</southBoundLatitude>
1068
+ <northBoundLatitude>75</northBoundLatitude>
1069
+ </EX_GeographicBoundingBox>
1070
+ <BoundingBox CRS="EPSG:4326"
1071
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1072
+ </Layer>
1073
+ <Layer queryable="0" opaque="0" cascaded="0">
1074
+ <Name>F152000.v4b.avg_lights_x_pct.lzw.tif</Name>
1075
+ <Title>F152000.v4b.avg_lights_x_pct.lzw.tif</Title>
1076
+ <CRS>EPSG:4326</CRS>
1077
+ <EX_GeographicBoundingBox>
1078
+ <westBoundLongitude>-180</westBoundLongitude>
1079
+ <eastBoundLongitude>180</eastBoundLongitude>
1080
+ <southBoundLatitude>-65</southBoundLatitude>
1081
+ <northBoundLatitude>75</northBoundLatitude>
1082
+ </EX_GeographicBoundingBox>
1083
+ <BoundingBox CRS="EPSG:4326"
1084
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1085
+ </Layer>
1086
+ <Layer queryable="0" opaque="0" cascaded="0">
1087
+ <Name>F152000.v4b_web.avg_vis.lzw.tif</Name>
1088
+ <Title>F152000.v4b_web.avg_vis.lzw.tif</Title>
1089
+ <CRS>EPSG:4326</CRS>
1090
+ <EX_GeographicBoundingBox>
1091
+ <westBoundLongitude>-180</westBoundLongitude>
1092
+ <eastBoundLongitude>180</eastBoundLongitude>
1093
+ <southBoundLatitude>-65</southBoundLatitude>
1094
+ <northBoundLatitude>75</northBoundLatitude>
1095
+ </EX_GeographicBoundingBox>
1096
+ <BoundingBox CRS="EPSG:4326"
1097
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1098
+ </Layer>
1099
+ <Layer queryable="0" opaque="0" cascaded="0">
1100
+ <Name>F152000.v4b_web.cf_cvg.lzw.tif</Name>
1101
+ <Title>F152000.v4b_web.cf_cvg.lzw.tif</Title>
1102
+ <CRS>EPSG:4326</CRS>
1103
+ <EX_GeographicBoundingBox>
1104
+ <westBoundLongitude>-180</westBoundLongitude>
1105
+ <eastBoundLongitude>180</eastBoundLongitude>
1106
+ <southBoundLatitude>-65</southBoundLatitude>
1107
+ <northBoundLatitude>75</northBoundLatitude>
1108
+ </EX_GeographicBoundingBox>
1109
+ <BoundingBox CRS="EPSG:4326"
1110
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1111
+ </Layer>
1112
+ <Layer queryable="0" opaque="0" cascaded="0">
1113
+ <Name>F152000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1114
+ <Title>F152000.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1115
+ <CRS>EPSG:4326</CRS>
1116
+ <EX_GeographicBoundingBox>
1117
+ <westBoundLongitude>-180</westBoundLongitude>
1118
+ <eastBoundLongitude>180</eastBoundLongitude>
1119
+ <southBoundLatitude>-65</southBoundLatitude>
1120
+ <northBoundLatitude>75</northBoundLatitude>
1121
+ </EX_GeographicBoundingBox>
1122
+ <BoundingBox CRS="EPSG:4326"
1123
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1124
+ </Layer>
1125
+ <Layer queryable="0" opaque="0" cascaded="0">
1126
+ <Name>F152001.v4b.avg_lights_x_pct.lzw.tif</Name>
1127
+ <Title>F152001.v4b.avg_lights_x_pct.lzw.tif</Title>
1128
+ <CRS>EPSG:4326</CRS>
1129
+ <EX_GeographicBoundingBox>
1130
+ <westBoundLongitude>-180</westBoundLongitude>
1131
+ <eastBoundLongitude>180</eastBoundLongitude>
1132
+ <southBoundLatitude>-65</southBoundLatitude>
1133
+ <northBoundLatitude>75</northBoundLatitude>
1134
+ </EX_GeographicBoundingBox>
1135
+ <BoundingBox CRS="EPSG:4326"
1136
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1137
+ </Layer>
1138
+ <Layer queryable="0" opaque="0" cascaded="0">
1139
+ <Name>F152001.v4b_web.avg_vis.lzw.tif</Name>
1140
+ <Title>F152001.v4b_web.avg_vis.lzw.tif</Title>
1141
+ <CRS>EPSG:4326</CRS>
1142
+ <EX_GeographicBoundingBox>
1143
+ <westBoundLongitude>-180</westBoundLongitude>
1144
+ <eastBoundLongitude>180</eastBoundLongitude>
1145
+ <southBoundLatitude>-65</southBoundLatitude>
1146
+ <northBoundLatitude>75</northBoundLatitude>
1147
+ </EX_GeographicBoundingBox>
1148
+ <BoundingBox CRS="EPSG:4326"
1149
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1150
+ </Layer>
1151
+ <Layer queryable="0" opaque="0" cascaded="0">
1152
+ <Name>F152001.v4b_web.cf_cvg.lzw.tif</Name>
1153
+ <Title>F152001.v4b_web.cf_cvg.lzw.tif</Title>
1154
+ <CRS>EPSG:4326</CRS>
1155
+ <EX_GeographicBoundingBox>
1156
+ <westBoundLongitude>-180</westBoundLongitude>
1157
+ <eastBoundLongitude>180</eastBoundLongitude>
1158
+ <southBoundLatitude>-65</southBoundLatitude>
1159
+ <northBoundLatitude>75</northBoundLatitude>
1160
+ </EX_GeographicBoundingBox>
1161
+ <BoundingBox CRS="EPSG:4326"
1162
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1163
+ </Layer>
1164
+ <Layer queryable="0" opaque="0" cascaded="0">
1165
+ <Name>F152001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1166
+ <Title>F152001.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1167
+ <CRS>EPSG:4326</CRS>
1168
+ <EX_GeographicBoundingBox>
1169
+ <westBoundLongitude>-180</westBoundLongitude>
1170
+ <eastBoundLongitude>180</eastBoundLongitude>
1171
+ <southBoundLatitude>-65</southBoundLatitude>
1172
+ <northBoundLatitude>75</northBoundLatitude>
1173
+ </EX_GeographicBoundingBox>
1174
+ <BoundingBox CRS="EPSG:4326"
1175
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1176
+ </Layer>
1177
+ <Layer queryable="0" opaque="0" cascaded="0">
1178
+ <Name>F152002.v4b.avg_lights_x_pct.lzw.tif</Name>
1179
+ <Title>F152002.v4b.avg_lights_x_pct.lzw.tif</Title>
1180
+ <CRS>EPSG:4326</CRS>
1181
+ <EX_GeographicBoundingBox>
1182
+ <westBoundLongitude>-180</westBoundLongitude>
1183
+ <eastBoundLongitude>180</eastBoundLongitude>
1184
+ <southBoundLatitude>-65</southBoundLatitude>
1185
+ <northBoundLatitude>75</northBoundLatitude>
1186
+ </EX_GeographicBoundingBox>
1187
+ <BoundingBox CRS="EPSG:4326"
1188
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1189
+ </Layer>
1190
+ <Layer queryable="0" opaque="0" cascaded="0">
1191
+ <Name>F152002.v4b_web.avg_vis.lzw.tif</Name>
1192
+ <Title>F152002.v4b_web.avg_vis.lzw.tif</Title>
1193
+ <CRS>EPSG:4326</CRS>
1194
+ <EX_GeographicBoundingBox>
1195
+ <westBoundLongitude>-180</westBoundLongitude>
1196
+ <eastBoundLongitude>180</eastBoundLongitude>
1197
+ <southBoundLatitude>-65</southBoundLatitude>
1198
+ <northBoundLatitude>75</northBoundLatitude>
1199
+ </EX_GeographicBoundingBox>
1200
+ <BoundingBox CRS="EPSG:4326"
1201
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1202
+ </Layer>
1203
+ <Layer queryable="0" opaque="0" cascaded="0">
1204
+ <Name>F152002.v4b_web.cf_cvg.lzw.tif</Name>
1205
+ <Title>F152002.v4b_web.cf_cvg.lzw.tif</Title>
1206
+ <CRS>EPSG:4326</CRS>
1207
+ <EX_GeographicBoundingBox>
1208
+ <westBoundLongitude>-180</westBoundLongitude>
1209
+ <eastBoundLongitude>180</eastBoundLongitude>
1210
+ <southBoundLatitude>-65</southBoundLatitude>
1211
+ <northBoundLatitude>75</northBoundLatitude>
1212
+ </EX_GeographicBoundingBox>
1213
+ <BoundingBox CRS="EPSG:4326"
1214
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1215
+ </Layer>
1216
+ <Layer queryable="0" opaque="0" cascaded="0">
1217
+ <Name>F152002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1218
+ <Title>F152002.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1219
+ <CRS>EPSG:4326</CRS>
1220
+ <EX_GeographicBoundingBox>
1221
+ <westBoundLongitude>-180</westBoundLongitude>
1222
+ <eastBoundLongitude>180</eastBoundLongitude>
1223
+ <southBoundLatitude>-65</southBoundLatitude>
1224
+ <northBoundLatitude>75</northBoundLatitude>
1225
+ </EX_GeographicBoundingBox>
1226
+ <BoundingBox CRS="EPSG:4326"
1227
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1228
+ </Layer>
1229
+ <Layer queryable="0" opaque="0" cascaded="0">
1230
+ <Name>F152003.v4b.avg_lights_x_pct.lzw.tif</Name>
1231
+ <Title>F152003.v4b.avg_lights_x_pct.lzw.tif</Title>
1232
+ <CRS>EPSG:4326</CRS>
1233
+ <EX_GeographicBoundingBox>
1234
+ <westBoundLongitude>-180</westBoundLongitude>
1235
+ <eastBoundLongitude>180</eastBoundLongitude>
1236
+ <southBoundLatitude>-65</southBoundLatitude>
1237
+ <northBoundLatitude>75</northBoundLatitude>
1238
+ </EX_GeographicBoundingBox>
1239
+ <BoundingBox CRS="EPSG:4326"
1240
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1241
+ </Layer>
1242
+ <Layer queryable="0" opaque="0" cascaded="0">
1243
+ <Name>F152003.v4b_web.avg_vis.lzw.tif</Name>
1244
+ <Title>F152003.v4b_web.avg_vis.lzw.tif</Title>
1245
+ <CRS>EPSG:4326</CRS>
1246
+ <EX_GeographicBoundingBox>
1247
+ <westBoundLongitude>-180</westBoundLongitude>
1248
+ <eastBoundLongitude>180</eastBoundLongitude>
1249
+ <southBoundLatitude>-65</southBoundLatitude>
1250
+ <northBoundLatitude>75</northBoundLatitude>
1251
+ </EX_GeographicBoundingBox>
1252
+ <BoundingBox CRS="EPSG:4326"
1253
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1254
+ </Layer>
1255
+ <Layer queryable="0" opaque="0" cascaded="0">
1256
+ <Name>F152003.v4b_web.cf_cvg.lzw.tif</Name>
1257
+ <Title>F152003.v4b_web.cf_cvg.lzw.tif</Title>
1258
+ <CRS>EPSG:4326</CRS>
1259
+ <EX_GeographicBoundingBox>
1260
+ <westBoundLongitude>-180</westBoundLongitude>
1261
+ <eastBoundLongitude>180</eastBoundLongitude>
1262
+ <southBoundLatitude>-65</southBoundLatitude>
1263
+ <northBoundLatitude>75</northBoundLatitude>
1264
+ </EX_GeographicBoundingBox>
1265
+ <BoundingBox CRS="EPSG:4326"
1266
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1267
+ </Layer>
1268
+ <Layer queryable="0" opaque="0" cascaded="0">
1269
+ <Name>F152003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1270
+ <Title>F152003.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1271
+ <CRS>EPSG:4326</CRS>
1272
+ <EX_GeographicBoundingBox>
1273
+ <westBoundLongitude>-180</westBoundLongitude>
1274
+ <eastBoundLongitude>180</eastBoundLongitude>
1275
+ <southBoundLatitude>-65</southBoundLatitude>
1276
+ <northBoundLatitude>75</northBoundLatitude>
1277
+ </EX_GeographicBoundingBox>
1278
+ <BoundingBox CRS="EPSG:4326"
1279
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1280
+ </Layer>
1281
+ <Layer queryable="0" opaque="0" cascaded="0">
1282
+ <Name>F152004.v4b.avg_lights_x_pct.lzw.tif</Name>
1283
+ <Title>F152004.v4b.avg_lights_x_pct.lzw.tif</Title>
1284
+ <CRS>EPSG:4326</CRS>
1285
+ <EX_GeographicBoundingBox>
1286
+ <westBoundLongitude>-180</westBoundLongitude>
1287
+ <eastBoundLongitude>180</eastBoundLongitude>
1288
+ <southBoundLatitude>-65</southBoundLatitude>
1289
+ <northBoundLatitude>75</northBoundLatitude>
1290
+ </EX_GeographicBoundingBox>
1291
+ <BoundingBox CRS="EPSG:4326"
1292
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1293
+ </Layer>
1294
+ <Layer queryable="0" opaque="0" cascaded="0">
1295
+ <Name>F152004.v4b_web.avg_vis.lzw.tif</Name>
1296
+ <Title>F152004.v4b_web.avg_vis.lzw.tif</Title>
1297
+ <CRS>EPSG:4326</CRS>
1298
+ <EX_GeographicBoundingBox>
1299
+ <westBoundLongitude>-180</westBoundLongitude>
1300
+ <eastBoundLongitude>180</eastBoundLongitude>
1301
+ <southBoundLatitude>-65</southBoundLatitude>
1302
+ <northBoundLatitude>75</northBoundLatitude>
1303
+ </EX_GeographicBoundingBox>
1304
+ <BoundingBox CRS="EPSG:4326"
1305
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1306
+ </Layer>
1307
+ <Layer queryable="0" opaque="0" cascaded="0">
1308
+ <Name>F152004.v4b_web.cf_cvg.lzw.tif</Name>
1309
+ <Title>F152004.v4b_web.cf_cvg.lzw.tif</Title>
1310
+ <CRS>EPSG:4326</CRS>
1311
+ <EX_GeographicBoundingBox>
1312
+ <westBoundLongitude>-180</westBoundLongitude>
1313
+ <eastBoundLongitude>180</eastBoundLongitude>
1314
+ <southBoundLatitude>-65</southBoundLatitude>
1315
+ <northBoundLatitude>75</northBoundLatitude>
1316
+ </EX_GeographicBoundingBox>
1317
+ <BoundingBox CRS="EPSG:4326"
1318
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1319
+ </Layer>
1320
+ <Layer queryable="0" opaque="0" cascaded="0">
1321
+ <Name>F152004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1322
+ <Title>F152004.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1323
+ <CRS>EPSG:4326</CRS>
1324
+ <EX_GeographicBoundingBox>
1325
+ <westBoundLongitude>-180</westBoundLongitude>
1326
+ <eastBoundLongitude>180</eastBoundLongitude>
1327
+ <southBoundLatitude>-65</southBoundLatitude>
1328
+ <northBoundLatitude>75</northBoundLatitude>
1329
+ </EX_GeographicBoundingBox>
1330
+ <BoundingBox CRS="EPSG:4326"
1331
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1332
+ </Layer>
1333
+ <Layer queryable="0" opaque="0" cascaded="0">
1334
+ <Name>F152005.v4b.avg_lights_x_pct.lzw.tif</Name>
1335
+ <Title>F152005.v4b.avg_lights_x_pct.lzw.tif</Title>
1336
+ <CRS>EPSG:4326</CRS>
1337
+ <EX_GeographicBoundingBox>
1338
+ <westBoundLongitude>-180</westBoundLongitude>
1339
+ <eastBoundLongitude>180</eastBoundLongitude>
1340
+ <southBoundLatitude>-65</southBoundLatitude>
1341
+ <northBoundLatitude>75</northBoundLatitude>
1342
+ </EX_GeographicBoundingBox>
1343
+ <BoundingBox CRS="EPSG:4326"
1344
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1345
+ </Layer>
1346
+ <Layer queryable="0" opaque="0" cascaded="0">
1347
+ <Name>F152005.v4b_web.avg_vis.lzw.tif</Name>
1348
+ <Title>F152005.v4b_web.avg_vis.lzw.tif</Title>
1349
+ <CRS>EPSG:4326</CRS>
1350
+ <EX_GeographicBoundingBox>
1351
+ <westBoundLongitude>-180</westBoundLongitude>
1352
+ <eastBoundLongitude>180</eastBoundLongitude>
1353
+ <southBoundLatitude>-65</southBoundLatitude>
1354
+ <northBoundLatitude>75</northBoundLatitude>
1355
+ </EX_GeographicBoundingBox>
1356
+ <BoundingBox CRS="EPSG:4326"
1357
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1358
+ </Layer>
1359
+ <Layer queryable="0" opaque="0" cascaded="0">
1360
+ <Name>F152005.v4b_web.cf_cvg.lzw.tif</Name>
1361
+ <Title>F152005.v4b_web.cf_cvg.lzw.tif</Title>
1362
+ <CRS>EPSG:4326</CRS>
1363
+ <EX_GeographicBoundingBox>
1364
+ <westBoundLongitude>-180</westBoundLongitude>
1365
+ <eastBoundLongitude>180</eastBoundLongitude>
1366
+ <southBoundLatitude>-65</southBoundLatitude>
1367
+ <northBoundLatitude>75</northBoundLatitude>
1368
+ </EX_GeographicBoundingBox>
1369
+ <BoundingBox CRS="EPSG:4326"
1370
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1371
+ </Layer>
1372
+ <Layer queryable="0" opaque="0" cascaded="0">
1373
+ <Name>F152005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1374
+ <Title>F152005.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1375
+ <CRS>EPSG:4326</CRS>
1376
+ <EX_GeographicBoundingBox>
1377
+ <westBoundLongitude>-180</westBoundLongitude>
1378
+ <eastBoundLongitude>180</eastBoundLongitude>
1379
+ <southBoundLatitude>-65</southBoundLatitude>
1380
+ <northBoundLatitude>75</northBoundLatitude>
1381
+ </EX_GeographicBoundingBox>
1382
+ <BoundingBox CRS="EPSG:4326"
1383
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1384
+ </Layer>
1385
+ <Layer queryable="0" opaque="0" cascaded="0">
1386
+ <Name>F152006.v4b.avg_lights_x_pct.lzw.tif</Name>
1387
+ <Title>F152006.v4b.avg_lights_x_pct.lzw.tif</Title>
1388
+ <CRS>EPSG:4326</CRS>
1389
+ <EX_GeographicBoundingBox>
1390
+ <westBoundLongitude>-180</westBoundLongitude>
1391
+ <eastBoundLongitude>180</eastBoundLongitude>
1392
+ <southBoundLatitude>-65</southBoundLatitude>
1393
+ <northBoundLatitude>75</northBoundLatitude>
1394
+ </EX_GeographicBoundingBox>
1395
+ <BoundingBox CRS="EPSG:4326"
1396
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1397
+ </Layer>
1398
+ <Layer queryable="0" opaque="0" cascaded="0">
1399
+ <Name>F152006.v4b_web.avg_vis.lzw.tif</Name>
1400
+ <Title>F152006.v4b_web.avg_vis.lzw.tif</Title>
1401
+ <CRS>EPSG:4326</CRS>
1402
+ <EX_GeographicBoundingBox>
1403
+ <westBoundLongitude>-180</westBoundLongitude>
1404
+ <eastBoundLongitude>180</eastBoundLongitude>
1405
+ <southBoundLatitude>-65</southBoundLatitude>
1406
+ <northBoundLatitude>75</northBoundLatitude>
1407
+ </EX_GeographicBoundingBox>
1408
+ <BoundingBox CRS="EPSG:4326"
1409
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1410
+ </Layer>
1411
+ <Layer queryable="0" opaque="0" cascaded="0">
1412
+ <Name>F152006.v4b_web.cf_cvg.lzw.tif</Name>
1413
+ <Title>F152006.v4b_web.cf_cvg.lzw.tif</Title>
1414
+ <CRS>EPSG:4326</CRS>
1415
+ <EX_GeographicBoundingBox>
1416
+ <westBoundLongitude>-180</westBoundLongitude>
1417
+ <eastBoundLongitude>180</eastBoundLongitude>
1418
+ <southBoundLatitude>-65</southBoundLatitude>
1419
+ <northBoundLatitude>75</northBoundLatitude>
1420
+ </EX_GeographicBoundingBox>
1421
+ <BoundingBox CRS="EPSG:4326"
1422
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1423
+ </Layer>
1424
+ <Layer queryable="0" opaque="0" cascaded="0">
1425
+ <Name>F152006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1426
+ <Title>F152006.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1427
+ <CRS>EPSG:4326</CRS>
1428
+ <EX_GeographicBoundingBox>
1429
+ <westBoundLongitude>-180</westBoundLongitude>
1430
+ <eastBoundLongitude>180</eastBoundLongitude>
1431
+ <southBoundLatitude>-65</southBoundLatitude>
1432
+ <northBoundLatitude>75</northBoundLatitude>
1433
+ </EX_GeographicBoundingBox>
1434
+ <BoundingBox CRS="EPSG:4326"
1435
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1436
+ </Layer>
1437
+ <Layer queryable="0" opaque="0" cascaded="0">
1438
+ <Name>F152007.v4b.avg_lights_x_pct.lzw.tif</Name>
1439
+ <Title>F152007.v4b.avg_lights_x_pct.lzw.tif</Title>
1440
+ <CRS>EPSG:4326</CRS>
1441
+ <EX_GeographicBoundingBox>
1442
+ <westBoundLongitude>-180</westBoundLongitude>
1443
+ <eastBoundLongitude>180</eastBoundLongitude>
1444
+ <southBoundLatitude>-65</southBoundLatitude>
1445
+ <northBoundLatitude>75</northBoundLatitude>
1446
+ </EX_GeographicBoundingBox>
1447
+ <BoundingBox CRS="EPSG:4326"
1448
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1449
+ </Layer>
1450
+ <Layer queryable="0" opaque="0" cascaded="0">
1451
+ <Name>F152007.v4b_web.avg_vis.lzw.tif</Name>
1452
+ <Title>F152007.v4b_web.avg_vis.lzw.tif</Title>
1453
+ <CRS>EPSG:4326</CRS>
1454
+ <EX_GeographicBoundingBox>
1455
+ <westBoundLongitude>-180</westBoundLongitude>
1456
+ <eastBoundLongitude>180</eastBoundLongitude>
1457
+ <southBoundLatitude>-65</southBoundLatitude>
1458
+ <northBoundLatitude>75</northBoundLatitude>
1459
+ </EX_GeographicBoundingBox>
1460
+ <BoundingBox CRS="EPSG:4326"
1461
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1462
+ </Layer>
1463
+ <Layer queryable="0" opaque="0" cascaded="0">
1464
+ <Name>F152007.v4b_web.cf_cvg.lzw.tif</Name>
1465
+ <Title>F152007.v4b_web.cf_cvg.lzw.tif</Title>
1466
+ <CRS>EPSG:4326</CRS>
1467
+ <EX_GeographicBoundingBox>
1468
+ <westBoundLongitude>-180</westBoundLongitude>
1469
+ <eastBoundLongitude>180</eastBoundLongitude>
1470
+ <southBoundLatitude>-65</southBoundLatitude>
1471
+ <northBoundLatitude>75</northBoundLatitude>
1472
+ </EX_GeographicBoundingBox>
1473
+ <BoundingBox CRS="EPSG:4326"
1474
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1475
+ </Layer>
1476
+ <Layer queryable="0" opaque="0" cascaded="0">
1477
+ <Name>F152007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1478
+ <Title>F152007.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1479
+ <CRS>EPSG:4326</CRS>
1480
+ <EX_GeographicBoundingBox>
1481
+ <westBoundLongitude>-180</westBoundLongitude>
1482
+ <eastBoundLongitude>180</eastBoundLongitude>
1483
+ <southBoundLatitude>-65</southBoundLatitude>
1484
+ <northBoundLatitude>75</northBoundLatitude>
1485
+ </EX_GeographicBoundingBox>
1486
+ <BoundingBox CRS="EPSG:4326"
1487
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1488
+ </Layer>
1489
+ <Layer queryable="0" opaque="0" cascaded="0">
1490
+ <Name>F152008.v4b.avg_lights_x_pct.lzw.tif</Name>
1491
+ <Title>F152008.v4b.avg_lights_x_pct.lzw.tif</Title>
1492
+ <CRS>EPSG:4326</CRS>
1493
+ <EX_GeographicBoundingBox>
1494
+ <westBoundLongitude>-180</westBoundLongitude>
1495
+ <eastBoundLongitude>180</eastBoundLongitude>
1496
+ <southBoundLatitude>-65</southBoundLatitude>
1497
+ <northBoundLatitude>75</northBoundLatitude>
1498
+ </EX_GeographicBoundingBox>
1499
+ <BoundingBox CRS="EPSG:4326"
1500
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1501
+ </Layer>
1502
+ <Layer queryable="0" opaque="0" cascaded="0">
1503
+ <Name>F152008.v4b_web.avg_vis.lzw.tif</Name>
1504
+ <Title>F152008.v4b_web.avg_vis.lzw.tif</Title>
1505
+ <CRS>EPSG:4326</CRS>
1506
+ <EX_GeographicBoundingBox>
1507
+ <westBoundLongitude>-180</westBoundLongitude>
1508
+ <eastBoundLongitude>180</eastBoundLongitude>
1509
+ <southBoundLatitude>-65</southBoundLatitude>
1510
+ <northBoundLatitude>75</northBoundLatitude>
1511
+ </EX_GeographicBoundingBox>
1512
+ <BoundingBox CRS="EPSG:4326"
1513
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1514
+ </Layer>
1515
+ <Layer queryable="0" opaque="0" cascaded="0">
1516
+ <Name>F152008.v4b_web.cf_cvg.lzw.tif</Name>
1517
+ <Title>F152008.v4b_web.cf_cvg.lzw.tif</Title>
1518
+ <CRS>EPSG:4326</CRS>
1519
+ <EX_GeographicBoundingBox>
1520
+ <westBoundLongitude>-180</westBoundLongitude>
1521
+ <eastBoundLongitude>180</eastBoundLongitude>
1522
+ <southBoundLatitude>-65</southBoundLatitude>
1523
+ <northBoundLatitude>75</northBoundLatitude>
1524
+ </EX_GeographicBoundingBox>
1525
+ <BoundingBox CRS="EPSG:4326"
1526
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1527
+ </Layer>
1528
+ <Layer queryable="0" opaque="0" cascaded="0">
1529
+ <Name>F152008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1530
+ <Title>F152008.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1531
+ <CRS>EPSG:4326</CRS>
1532
+ <EX_GeographicBoundingBox>
1533
+ <westBoundLongitude>-180</westBoundLongitude>
1534
+ <eastBoundLongitude>180</eastBoundLongitude>
1535
+ <southBoundLatitude>-65</southBoundLatitude>
1536
+ <northBoundLatitude>75</northBoundLatitude>
1537
+ </EX_GeographicBoundingBox>
1538
+ <BoundingBox CRS="EPSG:4326"
1539
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1540
+ </Layer>
1541
+ <Layer queryable="0" opaque="0" cascaded="0">
1542
+ <Name>F162004.v4b.avg_lights_x_pct.lzw.tif</Name>
1543
+ <Title>F162004.v4b.avg_lights_x_pct.lzw.tif</Title>
1544
+ <CRS>EPSG:4326</CRS>
1545
+ <EX_GeographicBoundingBox>
1546
+ <westBoundLongitude>-180</westBoundLongitude>
1547
+ <eastBoundLongitude>180</eastBoundLongitude>
1548
+ <southBoundLatitude>-65</southBoundLatitude>
1549
+ <northBoundLatitude>75</northBoundLatitude>
1550
+ </EX_GeographicBoundingBox>
1551
+ <BoundingBox CRS="EPSG:4326"
1552
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1553
+ </Layer>
1554
+ <Layer queryable="0" opaque="0" cascaded="0">
1555
+ <Name>F162004.v4b_web.avg_vis.lzw.tif</Name>
1556
+ <Title>F162004.v4b_web.avg_vis.lzw.tif</Title>
1557
+ <CRS>EPSG:4326</CRS>
1558
+ <EX_GeographicBoundingBox>
1559
+ <westBoundLongitude>-180</westBoundLongitude>
1560
+ <eastBoundLongitude>180</eastBoundLongitude>
1561
+ <southBoundLatitude>-65</southBoundLatitude>
1562
+ <northBoundLatitude>75</northBoundLatitude>
1563
+ </EX_GeographicBoundingBox>
1564
+ <BoundingBox CRS="EPSG:4326"
1565
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1566
+ </Layer>
1567
+ <Layer queryable="0" opaque="0" cascaded="0">
1568
+ <Name>F162004.v4b_web.cf_cvg.lzw.tif</Name>
1569
+ <Title>F162004.v4b_web.cf_cvg.lzw.tif</Title>
1570
+ <CRS>EPSG:4326</CRS>
1571
+ <EX_GeographicBoundingBox>
1572
+ <westBoundLongitude>-180</westBoundLongitude>
1573
+ <eastBoundLongitude>180</eastBoundLongitude>
1574
+ <southBoundLatitude>-65</southBoundLatitude>
1575
+ <northBoundLatitude>75</northBoundLatitude>
1576
+ </EX_GeographicBoundingBox>
1577
+ <BoundingBox CRS="EPSG:4326"
1578
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1579
+ </Layer>
1580
+ <Layer queryable="0" opaque="0" cascaded="0">
1581
+ <Name>F162004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1582
+ <Title>F162004.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1583
+ <CRS>EPSG:4326</CRS>
1584
+ <EX_GeographicBoundingBox>
1585
+ <westBoundLongitude>-180</westBoundLongitude>
1586
+ <eastBoundLongitude>180</eastBoundLongitude>
1587
+ <southBoundLatitude>-65</southBoundLatitude>
1588
+ <northBoundLatitude>75</northBoundLatitude>
1589
+ </EX_GeographicBoundingBox>
1590
+ <BoundingBox CRS="EPSG:4326"
1591
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1592
+ </Layer>
1593
+ <Layer queryable="0" opaque="0" cascaded="0">
1594
+ <Name>F162005.v4b.avg_lights_x_pct.lzw.tif</Name>
1595
+ <Title>F162005.v4b.avg_lights_x_pct.lzw.tif</Title>
1596
+ <CRS>EPSG:4326</CRS>
1597
+ <EX_GeographicBoundingBox>
1598
+ <westBoundLongitude>-180</westBoundLongitude>
1599
+ <eastBoundLongitude>180</eastBoundLongitude>
1600
+ <southBoundLatitude>-65</southBoundLatitude>
1601
+ <northBoundLatitude>75</northBoundLatitude>
1602
+ </EX_GeographicBoundingBox>
1603
+ <BoundingBox CRS="EPSG:4326"
1604
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1605
+ </Layer>
1606
+ <Layer queryable="0" opaque="0" cascaded="0">
1607
+ <Name>F162005.v4b_web.avg_vis.lzw.tif</Name>
1608
+ <Title>F162005.v4b_web.avg_vis.lzw.tif</Title>
1609
+ <CRS>EPSG:4326</CRS>
1610
+ <EX_GeographicBoundingBox>
1611
+ <westBoundLongitude>-180</westBoundLongitude>
1612
+ <eastBoundLongitude>180</eastBoundLongitude>
1613
+ <southBoundLatitude>-65</southBoundLatitude>
1614
+ <northBoundLatitude>75</northBoundLatitude>
1615
+ </EX_GeographicBoundingBox>
1616
+ <BoundingBox CRS="EPSG:4326"
1617
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1618
+ </Layer>
1619
+ <Layer queryable="0" opaque="0" cascaded="0">
1620
+ <Name>F162005.v4b_web.cf_cvg.lzw.tif</Name>
1621
+ <Title>F162005.v4b_web.cf_cvg.lzw.tif</Title>
1622
+ <CRS>EPSG:4326</CRS>
1623
+ <EX_GeographicBoundingBox>
1624
+ <westBoundLongitude>-180</westBoundLongitude>
1625
+ <eastBoundLongitude>180</eastBoundLongitude>
1626
+ <southBoundLatitude>-65</southBoundLatitude>
1627
+ <northBoundLatitude>75</northBoundLatitude>
1628
+ </EX_GeographicBoundingBox>
1629
+ <BoundingBox CRS="EPSG:4326"
1630
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1631
+ </Layer>
1632
+ <Layer queryable="0" opaque="0" cascaded="0">
1633
+ <Name>F162005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1634
+ <Title>F162005.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1635
+ <CRS>EPSG:4326</CRS>
1636
+ <EX_GeographicBoundingBox>
1637
+ <westBoundLongitude>-180</westBoundLongitude>
1638
+ <eastBoundLongitude>180</eastBoundLongitude>
1639
+ <southBoundLatitude>-65</southBoundLatitude>
1640
+ <northBoundLatitude>75</northBoundLatitude>
1641
+ </EX_GeographicBoundingBox>
1642
+ <BoundingBox CRS="EPSG:4326"
1643
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1644
+ </Layer>
1645
+ <Layer queryable="0" opaque="0" cascaded="0">
1646
+ <Name>F162006.v4b.avg_lights_x_pct.lzw.tif</Name>
1647
+ <Title>F162006.v4b.avg_lights_x_pct.lzw.tif</Title>
1648
+ <CRS>EPSG:4326</CRS>
1649
+ <EX_GeographicBoundingBox>
1650
+ <westBoundLongitude>-180</westBoundLongitude>
1651
+ <eastBoundLongitude>180</eastBoundLongitude>
1652
+ <southBoundLatitude>-65</southBoundLatitude>
1653
+ <northBoundLatitude>75</northBoundLatitude>
1654
+ </EX_GeographicBoundingBox>
1655
+ <BoundingBox CRS="EPSG:4326"
1656
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1657
+ </Layer>
1658
+ <Layer queryable="0" opaque="0" cascaded="0">
1659
+ <Name>F162006.v4b_web.avg_vis.lzw.tif</Name>
1660
+ <Title>F162006.v4b_web.avg_vis.lzw.tif</Title>
1661
+ <CRS>EPSG:4326</CRS>
1662
+ <EX_GeographicBoundingBox>
1663
+ <westBoundLongitude>-180</westBoundLongitude>
1664
+ <eastBoundLongitude>180</eastBoundLongitude>
1665
+ <southBoundLatitude>-65</southBoundLatitude>
1666
+ <northBoundLatitude>75</northBoundLatitude>
1667
+ </EX_GeographicBoundingBox>
1668
+ <BoundingBox CRS="EPSG:4326"
1669
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1670
+ </Layer>
1671
+ <Layer queryable="0" opaque="0" cascaded="0">
1672
+ <Name>F162006.v4b_web.cf_cvg.lzw.tif</Name>
1673
+ <Title>F162006.v4b_web.cf_cvg.lzw.tif</Title>
1674
+ <CRS>EPSG:4326</CRS>
1675
+ <EX_GeographicBoundingBox>
1676
+ <westBoundLongitude>-180</westBoundLongitude>
1677
+ <eastBoundLongitude>180</eastBoundLongitude>
1678
+ <southBoundLatitude>-65</southBoundLatitude>
1679
+ <northBoundLatitude>75</northBoundLatitude>
1680
+ </EX_GeographicBoundingBox>
1681
+ <BoundingBox CRS="EPSG:4326"
1682
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1683
+ </Layer>
1684
+ <Layer queryable="0" opaque="0" cascaded="0">
1685
+ <Name>F162006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1686
+ <Title>F162006.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1687
+ <CRS>EPSG:4326</CRS>
1688
+ <EX_GeographicBoundingBox>
1689
+ <westBoundLongitude>-180</westBoundLongitude>
1690
+ <eastBoundLongitude>180</eastBoundLongitude>
1691
+ <southBoundLatitude>-65</southBoundLatitude>
1692
+ <northBoundLatitude>75</northBoundLatitude>
1693
+ </EX_GeographicBoundingBox>
1694
+ <BoundingBox CRS="EPSG:4326"
1695
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1696
+ </Layer>
1697
+ <Layer queryable="0" opaque="0" cascaded="0">
1698
+ <Name>F162007.v4b.avg_lights_x_pct.lzw.tif</Name>
1699
+ <Title>F162007.v4b.avg_lights_x_pct.lzw.tif</Title>
1700
+ <CRS>EPSG:4326</CRS>
1701
+ <EX_GeographicBoundingBox>
1702
+ <westBoundLongitude>-180</westBoundLongitude>
1703
+ <eastBoundLongitude>180</eastBoundLongitude>
1704
+ <southBoundLatitude>-65</southBoundLatitude>
1705
+ <northBoundLatitude>75</northBoundLatitude>
1706
+ </EX_GeographicBoundingBox>
1707
+ <BoundingBox CRS="EPSG:4326"
1708
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1709
+ </Layer>
1710
+ <Layer queryable="0" opaque="0" cascaded="0">
1711
+ <Name>F162007.v4b_web.avg_vis.lzw.tif</Name>
1712
+ <Title>F162007.v4b_web.avg_vis.lzw.tif</Title>
1713
+ <CRS>EPSG:4326</CRS>
1714
+ <EX_GeographicBoundingBox>
1715
+ <westBoundLongitude>-180</westBoundLongitude>
1716
+ <eastBoundLongitude>180</eastBoundLongitude>
1717
+ <southBoundLatitude>-65</southBoundLatitude>
1718
+ <northBoundLatitude>75</northBoundLatitude>
1719
+ </EX_GeographicBoundingBox>
1720
+ <BoundingBox CRS="EPSG:4326"
1721
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1722
+ </Layer>
1723
+ <Layer queryable="0" opaque="0" cascaded="0">
1724
+ <Name>F162007.v4b_web.cf_cvg.lzw.tif</Name>
1725
+ <Title>F162007.v4b_web.cf_cvg.lzw.tif</Title>
1726
+ <CRS>EPSG:4326</CRS>
1727
+ <EX_GeographicBoundingBox>
1728
+ <westBoundLongitude>-180</westBoundLongitude>
1729
+ <eastBoundLongitude>180</eastBoundLongitude>
1730
+ <southBoundLatitude>-65</southBoundLatitude>
1731
+ <northBoundLatitude>75</northBoundLatitude>
1732
+ </EX_GeographicBoundingBox>
1733
+ <BoundingBox CRS="EPSG:4326"
1734
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1735
+ </Layer>
1736
+ <Layer queryable="0" opaque="0" cascaded="0">
1737
+ <Name>F162007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1738
+ <Title>F162007.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1739
+ <CRS>EPSG:4326</CRS>
1740
+ <EX_GeographicBoundingBox>
1741
+ <westBoundLongitude>-180</westBoundLongitude>
1742
+ <eastBoundLongitude>180</eastBoundLongitude>
1743
+ <southBoundLatitude>-65</southBoundLatitude>
1744
+ <northBoundLatitude>75</northBoundLatitude>
1745
+ </EX_GeographicBoundingBox>
1746
+ <BoundingBox CRS="EPSG:4326"
1747
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1748
+ </Layer>
1749
+ <Layer queryable="0" opaque="0" cascaded="0">
1750
+ <Name>F162008.v4b.avg_lights_x_pct.lzw.tif</Name>
1751
+ <Title>F162008.v4b.avg_lights_x_pct.lzw.tif</Title>
1752
+ <CRS>EPSG:4326</CRS>
1753
+ <EX_GeographicBoundingBox>
1754
+ <westBoundLongitude>-180</westBoundLongitude>
1755
+ <eastBoundLongitude>180</eastBoundLongitude>
1756
+ <southBoundLatitude>-65</southBoundLatitude>
1757
+ <northBoundLatitude>75</northBoundLatitude>
1758
+ </EX_GeographicBoundingBox>
1759
+ <BoundingBox CRS="EPSG:4326"
1760
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1761
+ </Layer>
1762
+ <Layer queryable="0" opaque="0" cascaded="0">
1763
+ <Name>F162008.v4b_web.avg_vis.lzw.tif</Name>
1764
+ <Title>F162008.v4b_web.avg_vis.lzw.tif</Title>
1765
+ <CRS>EPSG:4326</CRS>
1766
+ <EX_GeographicBoundingBox>
1767
+ <westBoundLongitude>-180</westBoundLongitude>
1768
+ <eastBoundLongitude>180</eastBoundLongitude>
1769
+ <southBoundLatitude>-65</southBoundLatitude>
1770
+ <northBoundLatitude>75</northBoundLatitude>
1771
+ </EX_GeographicBoundingBox>
1772
+ <BoundingBox CRS="EPSG:4326"
1773
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1774
+ </Layer>
1775
+ <Layer queryable="0" opaque="0" cascaded="0">
1776
+ <Name>F162008.v4b_web.cf_cvg.lzw.tif</Name>
1777
+ <Title>F162008.v4b_web.cf_cvg.lzw.tif</Title>
1778
+ <CRS>EPSG:4326</CRS>
1779
+ <EX_GeographicBoundingBox>
1780
+ <westBoundLongitude>-180</westBoundLongitude>
1781
+ <eastBoundLongitude>180</eastBoundLongitude>
1782
+ <southBoundLatitude>-65</southBoundLatitude>
1783
+ <northBoundLatitude>75</northBoundLatitude>
1784
+ </EX_GeographicBoundingBox>
1785
+ <BoundingBox CRS="EPSG:4326"
1786
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1787
+ </Layer>
1788
+ <Layer queryable="0" opaque="0" cascaded="0">
1789
+ <Name>F162008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1790
+ <Title>F162008.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1791
+ <CRS>EPSG:4326</CRS>
1792
+ <EX_GeographicBoundingBox>
1793
+ <westBoundLongitude>-180</westBoundLongitude>
1794
+ <eastBoundLongitude>180</eastBoundLongitude>
1795
+ <southBoundLatitude>-65</southBoundLatitude>
1796
+ <northBoundLatitude>75</northBoundLatitude>
1797
+ </EX_GeographicBoundingBox>
1798
+ <BoundingBox CRS="EPSG:4326"
1799
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1800
+ </Layer>
1801
+ <Layer queryable="0" opaque="0" cascaded="0">
1802
+ <Name>F162009.v4b.avg_lights_x_pct.lzw.tif</Name>
1803
+ <Title>F162009.v4b.avg_lights_x_pct.lzw.tif</Title>
1804
+ <CRS>EPSG:4326</CRS>
1805
+ <EX_GeographicBoundingBox>
1806
+ <westBoundLongitude>-180</westBoundLongitude>
1807
+ <eastBoundLongitude>180</eastBoundLongitude>
1808
+ <southBoundLatitude>-65</southBoundLatitude>
1809
+ <northBoundLatitude>75</northBoundLatitude>
1810
+ </EX_GeographicBoundingBox>
1811
+ <BoundingBox CRS="EPSG:4326"
1812
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1813
+ </Layer>
1814
+ <Layer queryable="0" opaque="0" cascaded="0">
1815
+ <Name>F162009.v4b_web.avg_vis.lzw.tif</Name>
1816
+ <Title>F162009.v4b_web.avg_vis.lzw.tif</Title>
1817
+ <CRS>EPSG:4326</CRS>
1818
+ <EX_GeographicBoundingBox>
1819
+ <westBoundLongitude>-180</westBoundLongitude>
1820
+ <eastBoundLongitude>180</eastBoundLongitude>
1821
+ <southBoundLatitude>-65</southBoundLatitude>
1822
+ <northBoundLatitude>75</northBoundLatitude>
1823
+ </EX_GeographicBoundingBox>
1824
+ <BoundingBox CRS="EPSG:4326"
1825
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1826
+ </Layer>
1827
+ <Layer queryable="0" opaque="0" cascaded="0">
1828
+ <Name>F162009.v4b_web.cf_cvg.lzw.tif</Name>
1829
+ <Title>F162009.v4b_web.cf_cvg.lzw.tif</Title>
1830
+ <CRS>EPSG:4326</CRS>
1831
+ <EX_GeographicBoundingBox>
1832
+ <westBoundLongitude>-180</westBoundLongitude>
1833
+ <eastBoundLongitude>180</eastBoundLongitude>
1834
+ <southBoundLatitude>-65</southBoundLatitude>
1835
+ <northBoundLatitude>75</northBoundLatitude>
1836
+ </EX_GeographicBoundingBox>
1837
+ <BoundingBox CRS="EPSG:4326"
1838
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1839
+ </Layer>
1840
+ <Layer queryable="0" opaque="0" cascaded="0">
1841
+ <Name>F162009.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1842
+ <Title>F162009.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1843
+ <CRS>EPSG:4326</CRS>
1844
+ <EX_GeographicBoundingBox>
1845
+ <westBoundLongitude>-180</westBoundLongitude>
1846
+ <eastBoundLongitude>180</eastBoundLongitude>
1847
+ <southBoundLatitude>-65</southBoundLatitude>
1848
+ <northBoundLatitude>75</northBoundLatitude>
1849
+ </EX_GeographicBoundingBox>
1850
+ <BoundingBox CRS="EPSG:4326"
1851
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1852
+ </Layer>
1853
+ <Layer queryable="0" opaque="0" cascaded="0">
1854
+ <Name>F182010.v4c.avg_lights_x_pct.lzw.tif</Name>
1855
+ <Title>F182010.v4c.avg_lights_x_pct.lzw.tif</Title>
1856
+ <CRS>EPSG:4326</CRS>
1857
+ <EX_GeographicBoundingBox>
1858
+ <westBoundLongitude>-180</westBoundLongitude>
1859
+ <eastBoundLongitude>180</eastBoundLongitude>
1860
+ <southBoundLatitude>-65</southBoundLatitude>
1861
+ <northBoundLatitude>75</northBoundLatitude>
1862
+ </EX_GeographicBoundingBox>
1863
+ <BoundingBox CRS="EPSG:4326"
1864
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1865
+ </Layer>
1866
+ <Layer queryable="0" opaque="0" cascaded="0">
1867
+ <Name>F182010.v4c_web.avg_vis.lzw.tif</Name>
1868
+ <Title>F182010.v4c_web.avg_vis.lzw.tif</Title>
1869
+ <CRS>EPSG:4326</CRS>
1870
+ <EX_GeographicBoundingBox>
1871
+ <westBoundLongitude>-180</westBoundLongitude>
1872
+ <eastBoundLongitude>180</eastBoundLongitude>
1873
+ <southBoundLatitude>-65</southBoundLatitude>
1874
+ <northBoundLatitude>75</northBoundLatitude>
1875
+ </EX_GeographicBoundingBox>
1876
+ <BoundingBox CRS="EPSG:4326"
1877
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1878
+ </Layer>
1879
+ <Layer queryable="0" opaque="0" cascaded="0">
1880
+ <Name>F182010.v4c_web.cf_cvg.lzw.tif</Name>
1881
+ <Title>F182010.v4c_web.cf_cvg.lzw.tif</Title>
1882
+ <CRS>EPSG:4326</CRS>
1883
+ <EX_GeographicBoundingBox>
1884
+ <westBoundLongitude>-180</westBoundLongitude>
1885
+ <eastBoundLongitude>180</eastBoundLongitude>
1886
+ <southBoundLatitude>-65</southBoundLatitude>
1887
+ <northBoundLatitude>75</northBoundLatitude>
1888
+ </EX_GeographicBoundingBox>
1889
+ <BoundingBox CRS="EPSG:4326"
1890
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1891
+ </Layer>
1892
+ <Layer queryable="0" opaque="0" cascaded="0">
1893
+ <Name>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Name>
1894
+ <Title>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Title>
1895
+ <CRS>EPSG:4326</CRS>
1896
+ <EX_GeographicBoundingBox>
1897
+ <westBoundLongitude>-180</westBoundLongitude>
1898
+ <eastBoundLongitude>180</eastBoundLongitude>
1899
+ <southBoundLatitude>-65</southBoundLatitude>
1900
+ <northBoundLatitude>75</northBoundLatitude>
1901
+ </EX_GeographicBoundingBox>
1902
+ <BoundingBox CRS="EPSG:4326"
1903
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1904
+ </Layer>
1905
+ </Layer>
1906
+ </Capability>
1907
+ </WMS_Capabilities>
1908
+ */