@loaders.gl/wms 3.3.0-alpha.10

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 (49) hide show
  1. package/LICENSE +41 -0
  2. package/README.md +7 -0
  3. package/dist/dist.min.js +2277 -0
  4. package/dist/es5/bundle.js +6 -0
  5. package/dist/es5/bundle.js.map +1 -0
  6. package/dist/es5/index.js +34 -0
  7. package/dist/es5/index.js.map +1 -0
  8. package/dist/es5/lib/data-sources/image-data-source.js +4 -0
  9. package/dist/es5/lib/data-sources/image-data-source.js.map +1 -0
  10. package/dist/es5/lib/data-sources/wms-data-source.js +223 -0
  11. package/dist/es5/lib/data-sources/wms-data-source.js.map +1 -0
  12. package/dist/es5/lib/parse-wms.js +102 -0
  13. package/dist/es5/lib/parse-wms.js.map +1 -0
  14. package/dist/es5/wms-capabilities-loader.js +54 -0
  15. package/dist/es5/wms-capabilities-loader.js.map +1 -0
  16. package/dist/es5/wms-feature-info-loader.js +44 -0
  17. package/dist/es5/wms-feature-info-loader.js.map +1 -0
  18. package/dist/es5/wms-layer-description-loader.js +44 -0
  19. package/dist/es5/wms-layer-description-loader.js.map +1 -0
  20. package/dist/es5/wms-types.js +2 -0
  21. package/dist/es5/wms-types.js.map +1 -0
  22. package/dist/esm/bundle.js +6 -0
  23. package/dist/esm/bundle.js.map +1 -0
  24. package/dist/esm/index.js +7 -0
  25. package/dist/esm/index.js.map +1 -0
  26. package/dist/esm/lib/data-sources/image-data-source.js +2 -0
  27. package/dist/esm/lib/data-sources/image-data-source.js.map +1 -0
  28. package/dist/esm/lib/data-sources/wms-data-source.js +70 -0
  29. package/dist/esm/lib/data-sources/wms-data-source.js.map +1 -0
  30. package/dist/esm/lib/parse-wms.js +70 -0
  31. package/dist/esm/lib/parse-wms.js.map +1 -0
  32. package/dist/esm/wms-capabilities-loader.js +25 -0
  33. package/dist/esm/wms-capabilities-loader.js.map +1 -0
  34. package/dist/esm/wms-feature-info-loader.js +14 -0
  35. package/dist/esm/wms-feature-info-loader.js.map +1 -0
  36. package/dist/esm/wms-layer-description-loader.js +14 -0
  37. package/dist/esm/wms-layer-description-loader.js.map +1 -0
  38. package/dist/esm/wms-types.js +2 -0
  39. package/dist/esm/wms-types.js.map +1 -0
  40. package/package.json +43 -0
  41. package/src/bundle.ts +6 -0
  42. package/src/index.ts +13 -0
  43. package/src/lib/data-sources/image-data-source.ts +84 -0
  44. package/src/lib/data-sources/wms-data-source.ts +99 -0
  45. package/src/lib/parse-wms.ts +92 -0
  46. package/src/wms-capabilities-loader.ts +40 -0
  47. package/src/wms-feature-info-loader.ts +21 -0
  48. package/src/wms-layer-description-loader.ts +21 -0
  49. package/src/wms-types.ts +2051 -0
@@ -0,0 +1,2051 @@
1
+ // loaders.gl, MIT licenses
2
+
3
+ /** All capabilities of a WMS service - response to a WMS `GetCapabilities` data structure extracted from XML */
4
+ export type WMSCapabilities = {
5
+ name: string;
6
+ title?: string;
7
+ abstract?: string;
8
+ keywords: string[];
9
+ layer: {
10
+ name: string;
11
+ title?: string;
12
+ srs?: string[];
13
+ boundingBox?: [number, number, number, number];
14
+ layers: WMSLayer[];
15
+ };
16
+ requests: Record<string, WMSRequest>;
17
+ raw: Record<string, unknown>;
18
+ };
19
+
20
+ export type WMSLayer = {
21
+ name: string;
22
+ title?: string;
23
+ srs?: string[];
24
+ boundingBox?: [number, number, number, number];
25
+ layers: WMSLayer[];
26
+ };
27
+
28
+ export type WMSRequest = {
29
+ name: string;
30
+ mimeTypes: string[];
31
+ };
32
+
33
+ // GetFeatureInfo
34
+
35
+ /** WMS Feature info - response to a WMS `GetFeatureInfo` request */
36
+ export type WMSFeatureInfo = {
37
+ features: WMSFeature[];
38
+ };
39
+
40
+ export type WMSFeature = {
41
+ attributes: Record<string, number | string>;
42
+ };
43
+
44
+ // DescribeLayer
45
+
46
+ /** Layer description - response to a WMS `DescribeLayer` request */
47
+ export type WMSLayerDescription = {
48
+ // layers: {}[];
49
+ };
50
+
51
+ // // WIP
52
+
53
+ // export type GetCapabilities = {
54
+ // request: 'GetCapabilities';
55
+ // format: string[];
56
+ // dcpType: unknown;
57
+ // };
58
+
59
+ // export type GetMap = {
60
+ // request: 'GetMap';
61
+ // format: string[];
62
+ // dcpType: unknown;
63
+ // };
64
+
65
+ // export type GetFeatureInfo = {
66
+ // request: 'GetFeatureInfo';
67
+ // format: string[];
68
+ // dcpType: unknown;
69
+ // };
70
+
71
+ // export type GetLegendGraphic = {
72
+ // request: 'GetLegendGraphic';
73
+ // format: string[];
74
+ // dcpType: unknown;
75
+ // };
76
+
77
+ // export type GetStyles = {
78
+ // request: 'GetStyles';
79
+ // format: string[];
80
+ // dcpType: unknown;
81
+ // };
82
+
83
+ /**
84
+ * <EX_GeographicBoundingBox>
85
+ * <westBoundLongitude>-180</westBoundLongitude>
86
+ * <eastBoundLongitude>180</eastBoundLongitude>
87
+ * <southBoundLatitude>-65</southBoundLatitude>
88
+ * <northBoundLatitude>75</northBoundLatitude>
89
+ * </EX_GeographicBoundingBox>
90
+ * <BoundingBox CRS="EPSG:4326"
91
+ * minx="-65" miny="-180" maxx="75" maxy="180" />
92
+ */
93
+ export type Layer = {
94
+ name: string; // e.g. DMSP-Global-Composites-Version-4
95
+ title: string; // e.g. DMSP-Global-Composites-Version-4</Title>
96
+ abstract?: string; // DMSP-Global-Composites-Version-4</Abstract>
97
+ crs: string; // e.g. EPSG:4326</CRS>
98
+ queryable?: boolean;
99
+ opaque?: boolean;
100
+ cascaded?: boolean;
101
+ geographicBoundingBox: number[];
102
+ boundingBox: number[];
103
+ boundingBoxCRS: string;
104
+ layers: Layer[];
105
+ };
106
+
107
+ /**
108
+ * <Style>
109
+ * <Name>default</Name>
110
+ * <Title>default</Title>
111
+ * <LegendURL width="89" height="21">
112
+ * <Format>image/png</Format>
113
+ * <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"/>
114
+ * </LegendURL>
115
+ * </Style>
116
+ */
117
+ export type Style = {
118
+ name: string; // e.g. DMSP-Global-Composites-Version-4
119
+ title: string; // e.g. DMSP-Global-Composites-Version-4</Title>
120
+ legendUrl?: {
121
+ width: number;
122
+ height: number;
123
+ format: string;
124
+ onlineResource: string;
125
+ };
126
+ };
127
+
128
+ // export type Capability = GetCapabilities | GetMap;
129
+
130
+ export type WMSService = {
131
+ rawData: unknown;
132
+ name: string;
133
+ title: string;
134
+ onlineResource?: string;
135
+ contactInformation?: string;
136
+ maxWidth?: number;
137
+ maxHeight?: number;
138
+ capabilities: {
139
+ // getCapabilities: GetCapabilities;
140
+ // getMap: GetMap;
141
+ // getFeatureInfo?: GetFeatureInfo;
142
+ };
143
+
144
+ untypedData: unknown; // The raw, untyped JSON converted from XML
145
+ };
146
+
147
+ /*
148
+ <Capability>
149
+ <Request>
150
+ <GetCapabilities>
151
+ <Format>text/xml</Format>
152
+ <DCPType>
153
+ <HTTP>
154
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
155
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
156
+ </HTTP>
157
+ </DCPType>
158
+ </GetCapabilities>
159
+ <GetMap>
160
+ <Format>image/png</Format>
161
+ <Format>image/tiff</Format>
162
+ <Format>image/jpeg</Format>
163
+ <Format>image/png; mode=8bit</Format>
164
+ <Format>application/x-pdf</Format>
165
+ <Format>image/svg+xml</Format>
166
+ <DCPType>
167
+ <HTTP>
168
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
169
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
170
+ </HTTP>
171
+ </DCPType>
172
+ </GetMap>
173
+ <GetFeatureInfo>
174
+ <Format>text/plain</Format>
175
+ <Format>application/vnd.ogc.gml</Format>
176
+ <DCPType>
177
+ <HTTP>
178
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
179
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
180
+ </HTTP>
181
+ </DCPType>
182
+ </GetFeatureInfo>
183
+ <sld:DescribeLayer>
184
+ <Format>text/xml</Format>
185
+ <DCPType>
186
+ <HTTP>
187
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
188
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
189
+ </HTTP>
190
+ </DCPType>
191
+ </sld:DescribeLayer>
192
+ <sld:GetLegendGraphic>
193
+ <Format>image/png</Format>
194
+ <Format>image/jpeg</Format>
195
+ <Format>image/png; mode=8bit</Format>
196
+ <DCPType>
197
+ <HTTP>
198
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
199
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
200
+ </HTTP>
201
+ </DCPType>
202
+ </sld:GetLegendGraphic>
203
+ <ms:GetStyles>
204
+ <Format>text/xml</Format>
205
+ <DCPType>
206
+ <HTTP>
207
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
208
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
209
+ </HTTP>
210
+ </DCPType>
211
+ </ms:GetStyles>
212
+ </Request>
213
+ <Exception>
214
+ <Format>XML</Format>
215
+ <Format>INIMAGE</Format>
216
+ <Format>BLANK</Format>
217
+ </Exception>
218
+ <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/>
219
+ <Layer>
220
+ <Name>DMSP-Global-Composites-Version-4</Name>
221
+ <Title>DMSP-Global-Composites-Version-4</Title>
222
+ <Abstract>DMSP-Global-Composites-Version-4</Abstract>
223
+ <CRS>EPSG:4326</CRS>
224
+ <EX_GeographicBoundingBox>
225
+ <westBoundLongitude>-180</westBoundLongitude>
226
+ <eastBoundLongitude>180</eastBoundLongitude>
227
+ <southBoundLatitude>-65</southBoundLatitude>
228
+ <northBoundLatitude>75</northBoundLatitude>
229
+ </EX_GeographicBoundingBox>
230
+ <BoundingBox CRS="EPSG:4326"
231
+ minx="-65" miny="-180" maxx="75" maxy="180" />
232
+ <Layer queryable="0" opaque="0" cascaded="0">
233
+ <Name>countries</Name>
234
+ <Title>Countries</Title>
235
+ <CRS>EPSG:4326</CRS>
236
+ <EX_GeographicBoundingBox>
237
+ <westBoundLongitude>-180</westBoundLongitude>
238
+ <eastBoundLongitude>180</eastBoundLongitude>
239
+ <southBoundLatitude>-90</southBoundLatitude>
240
+ <northBoundLatitude>83.6236</northBoundLatitude>
241
+ </EX_GeographicBoundingBox>
242
+ <BoundingBox CRS="EPSG:4326"
243
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
244
+ <Style>
245
+ <Name>default</Name>
246
+ <Title>default</Title>
247
+ <LegendURL width="89" height="21">
248
+ <Format>image/png</Format>
249
+ <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"/>
250
+ </LegendURL>
251
+ </Style>
252
+ </Layer>
253
+ <Layer queryable="0" opaque="0" cascaded="0">
254
+ <Name>adminboundaries</Name>
255
+ <Title>Administrative Boundaries</Title>
256
+ <CRS>EPSG:4326</CRS>
257
+ <EX_GeographicBoundingBox>
258
+ <westBoundLongitude>-180</westBoundLongitude>
259
+ <eastBoundLongitude>180</eastBoundLongitude>
260
+ <southBoundLatitude>-90</southBoundLatitude>
261
+ <northBoundLatitude>83.6236</northBoundLatitude>
262
+ </EX_GeographicBoundingBox>
263
+ <BoundingBox CRS="EPSG:4326"
264
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
265
+ <Style>
266
+ <Name>default</Name>
267
+ <Title>default</Title>
268
+ <LegendURL width="65" height="21">
269
+ <Format>image/png</Format>
270
+ <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"/>
271
+ </LegendURL>
272
+ </Style>
273
+ </Layer>
274
+ <Layer queryable="0" opaque="0" cascaded="0">
275
+ <Name>eez</Name>
276
+ <Title>EEZ Boundaries</Title>
277
+ <CRS>EPSG:4326</CRS>
278
+ <EX_GeographicBoundingBox>
279
+ <westBoundLongitude>-179.999</westBoundLongitude>
280
+ <eastBoundLongitude>179.999</eastBoundLongitude>
281
+ <southBoundLatitude>-85.4703</southBoundLatitude>
282
+ <northBoundLatitude>87.0239</northBoundLatitude>
283
+ </EX_GeographicBoundingBox>
284
+ <BoundingBox CRS="EPSG:4326"
285
+ minx="-85.4703" miny="-179.999" maxx="87.0239" maxy="179.999" />
286
+ <Style>
287
+ <Name>default</Name>
288
+ <Title>default</Title>
289
+ <LegendURL width="53" height="21">
290
+ <Format>image/png</Format>
291
+ <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"/>
292
+ </LegendURL>
293
+ </Style>
294
+ </Layer>
295
+ <Layer queryable="0" opaque="0" cascaded="0">
296
+ <Name>cities</Name>
297
+ <Title>Cities</Title>
298
+ <CRS>EPSG:4326</CRS>
299
+ <EX_GeographicBoundingBox>
300
+ <westBoundLongitude>-176.152</westBoundLongitude>
301
+ <eastBoundLongitude>179.222</eastBoundLongitude>
302
+ <southBoundLatitude>-54.792</southBoundLatitude>
303
+ <northBoundLatitude>78.2</northBoundLatitude>
304
+ </EX_GeographicBoundingBox>
305
+ <BoundingBox CRS="EPSG:4326"
306
+ minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
307
+ <Style>
308
+ <Name>default</Name>
309
+ <Title>default</Title>
310
+ <LegendURL width="71" height="21">
311
+ <Format>image/png</Format>
312
+ <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"/>
313
+ </LegendURL>
314
+ </Style>
315
+ </Layer>
316
+ <Layer queryable="0" opaque="0" cascaded="0">
317
+ <Name>citieslabeled</Name>
318
+ <Title>Cities With Labels</Title>
319
+ <CRS>EPSG:4326</CRS>
320
+ <EX_GeographicBoundingBox>
321
+ <westBoundLongitude>-176.152</westBoundLongitude>
322
+ <eastBoundLongitude>179.222</eastBoundLongitude>
323
+ <southBoundLatitude>-54.792</southBoundLatitude>
324
+ <northBoundLatitude>78.2</northBoundLatitude>
325
+ </EX_GeographicBoundingBox>
326
+ <BoundingBox CRS="EPSG:4326"
327
+ minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
328
+ </Layer>
329
+ <Layer queryable="0" opaque="0" cascaded="0">
330
+ <Name>land</Name>
331
+ <Title>Land Sea Mask</Title>
332
+ <CRS>EPSG:4326</CRS>
333
+ <EX_GeographicBoundingBox>
334
+ <westBoundLongitude>-180</westBoundLongitude>
335
+ <eastBoundLongitude>180</eastBoundLongitude>
336
+ <southBoundLatitude>-90</southBoundLatitude>
337
+ <northBoundLatitude>83.6236</northBoundLatitude>
338
+ </EX_GeographicBoundingBox>
339
+ <BoundingBox CRS="EPSG:4326"
340
+ minx="-90" miny="-180" maxx="83.6236" maxy="180" />
341
+ <Style>
342
+ <Name>default</Name>
343
+ <Title>default</Title>
344
+ <LegendURL width="59" height="21">
345
+ <Format>image/png</Format>
346
+ <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"/>
347
+ </LegendURL>
348
+ </Style>
349
+ </Layer>
350
+ <Layer queryable="0" opaque="0" cascaded="0">
351
+ <Name>LandSeaMask</Name>
352
+ <Title>LandSeaMask</Title>
353
+ <CRS>EPSG:4326</CRS>
354
+ <EX_GeographicBoundingBox>
355
+ <westBoundLongitude>-180</westBoundLongitude>
356
+ <eastBoundLongitude>180</eastBoundLongitude>
357
+ <southBoundLatitude>-90</southBoundLatitude>
358
+ <northBoundLatitude>90</northBoundLatitude>
359
+ </EX_GeographicBoundingBox>
360
+ <BoundingBox CRS="EPSG:4326"
361
+ minx="-90" miny="-180" maxx="90" maxy="180" />
362
+ </Layer>
363
+ <Layer queryable="0" opaque="0" cascaded="0">
364
+ <Name>Rivers</Name>
365
+ <Title>Rivers</Title>
366
+ <CRS>EPSG:4326</CRS>
367
+ <EX_GeographicBoundingBox>
368
+ <westBoundLongitude>-164.887</westBoundLongitude>
369
+ <eastBoundLongitude>160.764</eastBoundLongitude>
370
+ <southBoundLatitude>-36.9694</southBoundLatitude>
371
+ <northBoundLatitude>71.3925</northBoundLatitude>
372
+ </EX_GeographicBoundingBox>
373
+ <BoundingBox CRS="EPSG:4326"
374
+ minx="-36.9694" miny="-164.887" maxx="71.3925" maxy="160.764" />
375
+ <Style>
376
+ <Name>default</Name>
377
+ <Title>default</Title>
378
+ <LegendURL width="71" height="21">
379
+ <Format>image/png</Format>
380
+ <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"/>
381
+ </LegendURL>
382
+ </Style>
383
+ </Layer>
384
+ <Layer queryable="0" opaque="0" cascaded="0">
385
+ <Name>F101992.v4b.avg_lights_x_pct.lzw.tif</Name>
386
+ <Title>F101992.v4b.avg_lights_x_pct.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>F101992.v4b_web.avg_vis.lzw.tif</Name>
399
+ <Title>F101992.v4b_web.avg_vis.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>F101992.v4b_web.cf_cvg.lzw.tif</Name>
412
+ <Title>F101992.v4b_web.cf_cvg.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>F101992.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
425
+ <Title>F101992.v4b_web.stable_lights.avg_vis.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>F101993.v4b.avg_lights_x_pct.lzw.tif</Name>
438
+ <Title>F101993.v4b.avg_lights_x_pct.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>F101993.v4b_web.avg_vis.lzw.tif</Name>
451
+ <Title>F101993.v4b_web.avg_vis.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>F101993.v4b_web.cf_cvg.lzw.tif</Name>
464
+ <Title>F101993.v4b_web.cf_cvg.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>F101993.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
477
+ <Title>F101993.v4b_web.stable_lights.avg_vis.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>F101994.v4b.avg_lights_x_pct.lzw.tif</Name>
490
+ <Title>F101994.v4b.avg_lights_x_pct.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>F101994.v4b_web.avg_vis.lzw.tif</Name>
503
+ <Title>F101994.v4b_web.avg_vis.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>F101994.v4b_web.cf_cvg.lzw.tif</Name>
516
+ <Title>F101994.v4b_web.cf_cvg.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>F101994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
529
+ <Title>F101994.v4b_web.stable_lights.avg_vis.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>F121994.v4b.avg_lights_x_pct.lzw.tif</Name>
542
+ <Title>F121994.v4b.avg_lights_x_pct.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>F121994.v4b_web.avg_vis.lzw.tif</Name>
555
+ <Title>F121994.v4b_web.avg_vis.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>F121994.v4b_web.cf_cvg.lzw.tif</Name>
568
+ <Title>F121994.v4b_web.cf_cvg.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>F121994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
581
+ <Title>F121994.v4b_web.stable_lights.avg_vis.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>F121995.v4b.avg_lights_x_pct.lzw.tif</Name>
594
+ <Title>F121995.v4b.avg_lights_x_pct.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>F121995.v4b_web.avg_vis.lzw.tif</Name>
607
+ <Title>F121995.v4b_web.avg_vis.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>F121995.v4b_web.cf_cvg.lzw.tif</Name>
620
+ <Title>F121995.v4b_web.cf_cvg.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>F121995.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
633
+ <Title>F121995.v4b_web.stable_lights.avg_vis.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>F121996.v4b.avg_lights_x_pct.lzw.tif</Name>
646
+ <Title>F121996.v4b.avg_lights_x_pct.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>F121996.v4b_web.avg_vis.lzw.tif</Name>
659
+ <Title>F121996.v4b_web.avg_vis.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>F121996.v4b_web.cf_cvg.lzw.tif</Name>
672
+ <Title>F121996.v4b_web.cf_cvg.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>F121996.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
685
+ <Title>F121996.v4b_web.stable_lights.avg_vis.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>F121997.v4b.avg_lights_x_pct.lzw.tif</Name>
698
+ <Title>F121997.v4b.avg_lights_x_pct.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>F121997.v4b_web.avg_vis.lzw.tif</Name>
711
+ <Title>F121997.v4b_web.avg_vis.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>F121997.v4b_web.cf_cvg.lzw.tif</Name>
724
+ <Title>F121997.v4b_web.cf_cvg.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>F121997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
737
+ <Title>F121997.v4b_web.stable_lights.avg_vis.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>F121998.v4b.avg_lights_x_pct.lzw.tif</Name>
750
+ <Title>F121998.v4b.avg_lights_x_pct.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>F121998.v4b_web.avg_vis.lzw.tif</Name>
763
+ <Title>F121998.v4b_web.avg_vis.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>F121998.v4b_web.cf_cvg.lzw.tif</Name>
776
+ <Title>F121998.v4b_web.cf_cvg.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>F121998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
789
+ <Title>F121998.v4b_web.stable_lights.avg_vis.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>F121999.v4b.avg_lights_x_pct.lzw.tif</Name>
802
+ <Title>F121999.v4b.avg_lights_x_pct.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>F121999.v4b_web.avg_vis.lzw.tif</Name>
815
+ <Title>F121999.v4b_web.avg_vis.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>F121999.v4b_web.cf_cvg.lzw.tif</Name>
828
+ <Title>F121999.v4b_web.cf_cvg.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>F121999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
841
+ <Title>F121999.v4b_web.stable_lights.avg_vis.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>F141997.v4b.avg_lights_x_pct.lzw.tif</Name>
854
+ <Title>F141997.v4b.avg_lights_x_pct.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>F141997.v4b_web.avg_vis.lzw.tif</Name>
867
+ <Title>F141997.v4b_web.avg_vis.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>F141997.v4b_web.cf_cvg.lzw.tif</Name>
880
+ <Title>F141997.v4b_web.cf_cvg.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>F141997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
893
+ <Title>F141997.v4b_web.stable_lights.avg_vis.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>F141998.v4b.avg_lights_x_pct.lzw.tif</Name>
906
+ <Title>F141998.v4b.avg_lights_x_pct.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>F141998.v4b_web.avg_vis.lzw.tif</Name>
919
+ <Title>F141998.v4b_web.avg_vis.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>F141998.v4b_web.cf_cvg.lzw.tif</Name>
932
+ <Title>F141998.v4b_web.cf_cvg.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>F141998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
945
+ <Title>F141998.v4b_web.stable_lights.avg_vis.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>F141999.v4b.avg_lights_x_pct.lzw.tif</Name>
958
+ <Title>F141999.v4b.avg_lights_x_pct.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>F141999.v4b_web.avg_vis.lzw.tif</Name>
971
+ <Title>F141999.v4b_web.avg_vis.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>F141999.v4b_web.cf_cvg.lzw.tif</Name>
984
+ <Title>F141999.v4b_web.cf_cvg.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>F141999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
997
+ <Title>F141999.v4b_web.stable_lights.avg_vis.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>F142000.v4b.avg_lights_x_pct.lzw.tif</Name>
1010
+ <Title>F142000.v4b.avg_lights_x_pct.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>F142000.v4b_web.avg_vis.lzw.tif</Name>
1023
+ <Title>F142000.v4b_web.avg_vis.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>F142000.v4b_web.cf_cvg.lzw.tif</Name>
1036
+ <Title>F142000.v4b_web.cf_cvg.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>F142000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1049
+ <Title>F142000.v4b_web.stable_lights.avg_vis.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>F142001.v4b.avg_lights_x_pct.lzw.tif</Name>
1062
+ <Title>F142001.v4b.avg_lights_x_pct.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>F142001.v4b_web.avg_vis.lzw.tif</Name>
1075
+ <Title>F142001.v4b_web.avg_vis.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>F142001.v4b_web.cf_cvg.lzw.tif</Name>
1088
+ <Title>F142001.v4b_web.cf_cvg.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>F142001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1101
+ <Title>F142001.v4b_web.stable_lights.avg_vis.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>F142002.v4b.avg_lights_x_pct.lzw.tif</Name>
1114
+ <Title>F142002.v4b.avg_lights_x_pct.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>F142002.v4b_web.avg_vis.lzw.tif</Name>
1127
+ <Title>F142002.v4b_web.avg_vis.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>F142002.v4b_web.cf_cvg.lzw.tif</Name>
1140
+ <Title>F142002.v4b_web.cf_cvg.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>F142002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1153
+ <Title>F142002.v4b_web.stable_lights.avg_vis.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>F142003.v4b.avg_lights_x_pct.lzw.tif</Name>
1166
+ <Title>F142003.v4b.avg_lights_x_pct.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>F142003.v4b_web.avg_vis.lzw.tif</Name>
1179
+ <Title>F142003.v4b_web.avg_vis.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>F142003.v4b_web.cf_cvg.lzw.tif</Name>
1192
+ <Title>F142003.v4b_web.cf_cvg.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>F142003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1205
+ <Title>F142003.v4b_web.stable_lights.avg_vis.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>F152000.v4b.avg_lights_x_pct.lzw.tif</Name>
1218
+ <Title>F152000.v4b.avg_lights_x_pct.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>F152000.v4b_web.avg_vis.lzw.tif</Name>
1231
+ <Title>F152000.v4b_web.avg_vis.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>F152000.v4b_web.cf_cvg.lzw.tif</Name>
1244
+ <Title>F152000.v4b_web.cf_cvg.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>F152000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1257
+ <Title>F152000.v4b_web.stable_lights.avg_vis.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>F152001.v4b.avg_lights_x_pct.lzw.tif</Name>
1270
+ <Title>F152001.v4b.avg_lights_x_pct.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>F152001.v4b_web.avg_vis.lzw.tif</Name>
1283
+ <Title>F152001.v4b_web.avg_vis.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>F152001.v4b_web.cf_cvg.lzw.tif</Name>
1296
+ <Title>F152001.v4b_web.cf_cvg.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>F152001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1309
+ <Title>F152001.v4b_web.stable_lights.avg_vis.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>F152002.v4b.avg_lights_x_pct.lzw.tif</Name>
1322
+ <Title>F152002.v4b.avg_lights_x_pct.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>F152002.v4b_web.avg_vis.lzw.tif</Name>
1335
+ <Title>F152002.v4b_web.avg_vis.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>F152002.v4b_web.cf_cvg.lzw.tif</Name>
1348
+ <Title>F152002.v4b_web.cf_cvg.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>F152002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1361
+ <Title>F152002.v4b_web.stable_lights.avg_vis.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>F152003.v4b.avg_lights_x_pct.lzw.tif</Name>
1374
+ <Title>F152003.v4b.avg_lights_x_pct.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>F152003.v4b_web.avg_vis.lzw.tif</Name>
1387
+ <Title>F152003.v4b_web.avg_vis.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>F152003.v4b_web.cf_cvg.lzw.tif</Name>
1400
+ <Title>F152003.v4b_web.cf_cvg.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>F152003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1413
+ <Title>F152003.v4b_web.stable_lights.avg_vis.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>F152004.v4b.avg_lights_x_pct.lzw.tif</Name>
1426
+ <Title>F152004.v4b.avg_lights_x_pct.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>F152004.v4b_web.avg_vis.lzw.tif</Name>
1439
+ <Title>F152004.v4b_web.avg_vis.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>F152004.v4b_web.cf_cvg.lzw.tif</Name>
1452
+ <Title>F152004.v4b_web.cf_cvg.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>F152004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1465
+ <Title>F152004.v4b_web.stable_lights.avg_vis.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>F152005.v4b.avg_lights_x_pct.lzw.tif</Name>
1478
+ <Title>F152005.v4b.avg_lights_x_pct.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>F152005.v4b_web.avg_vis.lzw.tif</Name>
1491
+ <Title>F152005.v4b_web.avg_vis.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>F152005.v4b_web.cf_cvg.lzw.tif</Name>
1504
+ <Title>F152005.v4b_web.cf_cvg.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>F152005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1517
+ <Title>F152005.v4b_web.stable_lights.avg_vis.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>F152006.v4b.avg_lights_x_pct.lzw.tif</Name>
1530
+ <Title>F152006.v4b.avg_lights_x_pct.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>F152006.v4b_web.avg_vis.lzw.tif</Name>
1543
+ <Title>F152006.v4b_web.avg_vis.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>F152006.v4b_web.cf_cvg.lzw.tif</Name>
1556
+ <Title>F152006.v4b_web.cf_cvg.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>F152006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1569
+ <Title>F152006.v4b_web.stable_lights.avg_vis.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>F152007.v4b.avg_lights_x_pct.lzw.tif</Name>
1582
+ <Title>F152007.v4b.avg_lights_x_pct.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>F152007.v4b_web.avg_vis.lzw.tif</Name>
1595
+ <Title>F152007.v4b_web.avg_vis.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>F152007.v4b_web.cf_cvg.lzw.tif</Name>
1608
+ <Title>F152007.v4b_web.cf_cvg.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>F152007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1621
+ <Title>F152007.v4b_web.stable_lights.avg_vis.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>F152008.v4b.avg_lights_x_pct.lzw.tif</Name>
1634
+ <Title>F152008.v4b.avg_lights_x_pct.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>F152008.v4b_web.avg_vis.lzw.tif</Name>
1647
+ <Title>F152008.v4b_web.avg_vis.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>F152008.v4b_web.cf_cvg.lzw.tif</Name>
1660
+ <Title>F152008.v4b_web.cf_cvg.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>F152008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1673
+ <Title>F152008.v4b_web.stable_lights.avg_vis.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>F162004.v4b.avg_lights_x_pct.lzw.tif</Name>
1686
+ <Title>F162004.v4b.avg_lights_x_pct.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>F162004.v4b_web.avg_vis.lzw.tif</Name>
1699
+ <Title>F162004.v4b_web.avg_vis.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>F162004.v4b_web.cf_cvg.lzw.tif</Name>
1712
+ <Title>F162004.v4b_web.cf_cvg.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>F162004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1725
+ <Title>F162004.v4b_web.stable_lights.avg_vis.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>F162005.v4b.avg_lights_x_pct.lzw.tif</Name>
1738
+ <Title>F162005.v4b.avg_lights_x_pct.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>F162005.v4b_web.avg_vis.lzw.tif</Name>
1751
+ <Title>F162005.v4b_web.avg_vis.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>F162005.v4b_web.cf_cvg.lzw.tif</Name>
1764
+ <Title>F162005.v4b_web.cf_cvg.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>F162005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1777
+ <Title>F162005.v4b_web.stable_lights.avg_vis.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>F162006.v4b.avg_lights_x_pct.lzw.tif</Name>
1790
+ <Title>F162006.v4b.avg_lights_x_pct.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>F162006.v4b_web.avg_vis.lzw.tif</Name>
1803
+ <Title>F162006.v4b_web.avg_vis.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>F162006.v4b_web.cf_cvg.lzw.tif</Name>
1816
+ <Title>F162006.v4b_web.cf_cvg.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>F162006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1829
+ <Title>F162006.v4b_web.stable_lights.avg_vis.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>F162007.v4b.avg_lights_x_pct.lzw.tif</Name>
1842
+ <Title>F162007.v4b.avg_lights_x_pct.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>F162007.v4b_web.avg_vis.lzw.tif</Name>
1855
+ <Title>F162007.v4b_web.avg_vis.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>F162007.v4b_web.cf_cvg.lzw.tif</Name>
1868
+ <Title>F162007.v4b_web.cf_cvg.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>F162007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1881
+ <Title>F162007.v4b_web.stable_lights.avg_vis.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>F162008.v4b.avg_lights_x_pct.lzw.tif</Name>
1894
+ <Title>F162008.v4b.avg_lights_x_pct.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 queryable="0" opaque="0" cascaded="0">
1906
+ <Name>F162008.v4b_web.avg_vis.lzw.tif</Name>
1907
+ <Title>F162008.v4b_web.avg_vis.lzw.tif</Title>
1908
+ <CRS>EPSG:4326</CRS>
1909
+ <EX_GeographicBoundingBox>
1910
+ <westBoundLongitude>-180</westBoundLongitude>
1911
+ <eastBoundLongitude>180</eastBoundLongitude>
1912
+ <southBoundLatitude>-65</southBoundLatitude>
1913
+ <northBoundLatitude>75</northBoundLatitude>
1914
+ </EX_GeographicBoundingBox>
1915
+ <BoundingBox CRS="EPSG:4326"
1916
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1917
+ </Layer>
1918
+ <Layer queryable="0" opaque="0" cascaded="0">
1919
+ <Name>F162008.v4b_web.cf_cvg.lzw.tif</Name>
1920
+ <Title>F162008.v4b_web.cf_cvg.lzw.tif</Title>
1921
+ <CRS>EPSG:4326</CRS>
1922
+ <EX_GeographicBoundingBox>
1923
+ <westBoundLongitude>-180</westBoundLongitude>
1924
+ <eastBoundLongitude>180</eastBoundLongitude>
1925
+ <southBoundLatitude>-65</southBoundLatitude>
1926
+ <northBoundLatitude>75</northBoundLatitude>
1927
+ </EX_GeographicBoundingBox>
1928
+ <BoundingBox CRS="EPSG:4326"
1929
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1930
+ </Layer>
1931
+ <Layer queryable="0" opaque="0" cascaded="0">
1932
+ <Name>F162008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1933
+ <Title>F162008.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1934
+ <CRS>EPSG:4326</CRS>
1935
+ <EX_GeographicBoundingBox>
1936
+ <westBoundLongitude>-180</westBoundLongitude>
1937
+ <eastBoundLongitude>180</eastBoundLongitude>
1938
+ <southBoundLatitude>-65</southBoundLatitude>
1939
+ <northBoundLatitude>75</northBoundLatitude>
1940
+ </EX_GeographicBoundingBox>
1941
+ <BoundingBox CRS="EPSG:4326"
1942
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1943
+ </Layer>
1944
+ <Layer queryable="0" opaque="0" cascaded="0">
1945
+ <Name>F162009.v4b.avg_lights_x_pct.lzw.tif</Name>
1946
+ <Title>F162009.v4b.avg_lights_x_pct.lzw.tif</Title>
1947
+ <CRS>EPSG:4326</CRS>
1948
+ <EX_GeographicBoundingBox>
1949
+ <westBoundLongitude>-180</westBoundLongitude>
1950
+ <eastBoundLongitude>180</eastBoundLongitude>
1951
+ <southBoundLatitude>-65</southBoundLatitude>
1952
+ <northBoundLatitude>75</northBoundLatitude>
1953
+ </EX_GeographicBoundingBox>
1954
+ <BoundingBox CRS="EPSG:4326"
1955
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1956
+ </Layer>
1957
+ <Layer queryable="0" opaque="0" cascaded="0">
1958
+ <Name>F162009.v4b_web.avg_vis.lzw.tif</Name>
1959
+ <Title>F162009.v4b_web.avg_vis.lzw.tif</Title>
1960
+ <CRS>EPSG:4326</CRS>
1961
+ <EX_GeographicBoundingBox>
1962
+ <westBoundLongitude>-180</westBoundLongitude>
1963
+ <eastBoundLongitude>180</eastBoundLongitude>
1964
+ <southBoundLatitude>-65</southBoundLatitude>
1965
+ <northBoundLatitude>75</northBoundLatitude>
1966
+ </EX_GeographicBoundingBox>
1967
+ <BoundingBox CRS="EPSG:4326"
1968
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1969
+ </Layer>
1970
+ <Layer queryable="0" opaque="0" cascaded="0">
1971
+ <Name>F162009.v4b_web.cf_cvg.lzw.tif</Name>
1972
+ <Title>F162009.v4b_web.cf_cvg.lzw.tif</Title>
1973
+ <CRS>EPSG:4326</CRS>
1974
+ <EX_GeographicBoundingBox>
1975
+ <westBoundLongitude>-180</westBoundLongitude>
1976
+ <eastBoundLongitude>180</eastBoundLongitude>
1977
+ <southBoundLatitude>-65</southBoundLatitude>
1978
+ <northBoundLatitude>75</northBoundLatitude>
1979
+ </EX_GeographicBoundingBox>
1980
+ <BoundingBox CRS="EPSG:4326"
1981
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1982
+ </Layer>
1983
+ <Layer queryable="0" opaque="0" cascaded="0">
1984
+ <Name>F162009.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1985
+ <Title>F162009.v4b_web.stable_lights.avg_vis.lzw.tif</Title>
1986
+ <CRS>EPSG:4326</CRS>
1987
+ <EX_GeographicBoundingBox>
1988
+ <westBoundLongitude>-180</westBoundLongitude>
1989
+ <eastBoundLongitude>180</eastBoundLongitude>
1990
+ <southBoundLatitude>-65</southBoundLatitude>
1991
+ <northBoundLatitude>75</northBoundLatitude>
1992
+ </EX_GeographicBoundingBox>
1993
+ <BoundingBox CRS="EPSG:4326"
1994
+ minx="-65" miny="-180" maxx="75" maxy="180" />
1995
+ </Layer>
1996
+ <Layer queryable="0" opaque="0" cascaded="0">
1997
+ <Name>F182010.v4c.avg_lights_x_pct.lzw.tif</Name>
1998
+ <Title>F182010.v4c.avg_lights_x_pct.lzw.tif</Title>
1999
+ <CRS>EPSG:4326</CRS>
2000
+ <EX_GeographicBoundingBox>
2001
+ <westBoundLongitude>-180</westBoundLongitude>
2002
+ <eastBoundLongitude>180</eastBoundLongitude>
2003
+ <southBoundLatitude>-65</southBoundLatitude>
2004
+ <northBoundLatitude>75</northBoundLatitude>
2005
+ </EX_GeographicBoundingBox>
2006
+ <BoundingBox CRS="EPSG:4326"
2007
+ minx="-65" miny="-180" maxx="75" maxy="180" />
2008
+ </Layer>
2009
+ <Layer queryable="0" opaque="0" cascaded="0">
2010
+ <Name>F182010.v4c_web.avg_vis.lzw.tif</Name>
2011
+ <Title>F182010.v4c_web.avg_vis.lzw.tif</Title>
2012
+ <CRS>EPSG:4326</CRS>
2013
+ <EX_GeographicBoundingBox>
2014
+ <westBoundLongitude>-180</westBoundLongitude>
2015
+ <eastBoundLongitude>180</eastBoundLongitude>
2016
+ <southBoundLatitude>-65</southBoundLatitude>
2017
+ <northBoundLatitude>75</northBoundLatitude>
2018
+ </EX_GeographicBoundingBox>
2019
+ <BoundingBox CRS="EPSG:4326"
2020
+ minx="-65" miny="-180" maxx="75" maxy="180" />
2021
+ </Layer>
2022
+ <Layer queryable="0" opaque="0" cascaded="0">
2023
+ <Name>F182010.v4c_web.cf_cvg.lzw.tif</Name>
2024
+ <Title>F182010.v4c_web.cf_cvg.lzw.tif</Title>
2025
+ <CRS>EPSG:4326</CRS>
2026
+ <EX_GeographicBoundingBox>
2027
+ <westBoundLongitude>-180</westBoundLongitude>
2028
+ <eastBoundLongitude>180</eastBoundLongitude>
2029
+ <southBoundLatitude>-65</southBoundLatitude>
2030
+ <northBoundLatitude>75</northBoundLatitude>
2031
+ </EX_GeographicBoundingBox>
2032
+ <BoundingBox CRS="EPSG:4326"
2033
+ minx="-65" miny="-180" maxx="75" maxy="180" />
2034
+ </Layer>
2035
+ <Layer queryable="0" opaque="0" cascaded="0">
2036
+ <Name>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Name>
2037
+ <Title>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Title>
2038
+ <CRS>EPSG:4326</CRS>
2039
+ <EX_GeographicBoundingBox>
2040
+ <westBoundLongitude>-180</westBoundLongitude>
2041
+ <eastBoundLongitude>180</eastBoundLongitude>
2042
+ <southBoundLatitude>-65</southBoundLatitude>
2043
+ <northBoundLatitude>75</northBoundLatitude>
2044
+ </EX_GeographicBoundingBox>
2045
+ <BoundingBox CRS="EPSG:4326"
2046
+ minx="-65" miny="-180" maxx="75" maxy="180" />
2047
+ </Layer>
2048
+ </Layer>
2049
+ </Capability>
2050
+ </WMS_Capabilities>
2051
+ */