@loaders.gl/wms 3.3.0-alpha.8

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