@loaders.gl/wms 3.4.0-alpha.1 → 3.4.0-alpha.3

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 (428) hide show
  1. package/dist/csw-capabilities-loader.d.ts +29 -0
  2. package/dist/csw-capabilities-loader.d.ts.map +1 -0
  3. package/dist/csw-capabilities-loader.js +31 -0
  4. package/dist/csw-domain-loader.d.ts +28 -0
  5. package/dist/csw-domain-loader.d.ts.map +1 -0
  6. package/dist/csw-domain-loader.js +31 -0
  7. package/dist/csw-records-loader.d.ts +12 -0
  8. package/dist/csw-records-loader.d.ts.map +1 -0
  9. package/dist/csw-records-loader.js +30 -0
  10. package/dist/dist.min.js +3951 -3986
  11. package/dist/es5/csw-capabilities-loader.js +51 -0
  12. package/dist/es5/csw-capabilities-loader.js.map +1 -0
  13. package/dist/es5/csw-domain-loader.js +51 -0
  14. package/dist/es5/csw-domain-loader.js.map +1 -0
  15. package/dist/es5/csw-records-loader.js +49 -0
  16. package/dist/es5/csw-records-loader.js.map +1 -0
  17. package/dist/es5/{wip/gml-loader.js → gml-loader.js} +9 -12
  18. package/dist/es5/gml-loader.js.map +1 -0
  19. package/dist/es5/index.js +39 -11
  20. package/dist/es5/index.js.map +1 -1
  21. package/dist/es5/lerc-loader.js +17 -22
  22. package/dist/es5/lerc-loader.js.map +1 -1
  23. package/dist/es5/lib/{data-sources/create-image-source.js → create-image-source.js} +5 -6
  24. package/dist/es5/lib/create-image-source.js.map +1 -0
  25. package/dist/es5/lib/parsers/csw/parse-csw-capabilities.js +24 -0
  26. package/dist/es5/lib/parsers/csw/parse-csw-capabilities.js.map +1 -0
  27. package/dist/es5/lib/parsers/csw/parse-csw-domain.js +42 -0
  28. package/dist/es5/lib/parsers/csw/parse-csw-domain.js.map +1 -0
  29. package/dist/es5/lib/parsers/csw/parse-csw-records.js +75 -0
  30. package/dist/es5/lib/parsers/csw/parse-csw-records.js.map +1 -0
  31. package/dist/es5/lib/parsers/csw/parse-exception-report.js +16 -0
  32. package/dist/es5/lib/parsers/csw/parse-exception-report.js.map +1 -0
  33. package/dist/es5/lib/{gml → parsers/gml}/deep-strict-equal.js +0 -8
  34. package/dist/es5/lib/parsers/gml/deep-strict-equal.js.map +1 -0
  35. package/dist/es5/lib/{gml → parsers/gml}/parse-gml.js +1 -13
  36. package/dist/es5/lib/parsers/gml/parse-gml.js.map +1 -0
  37. package/dist/es5/lib/parsers/lerc/lerc-types.js.map +1 -0
  38. package/dist/es5/lib/parsers/wms/parse-wms-capabilities.js +237 -0
  39. package/dist/es5/lib/parsers/wms/parse-wms-capabilities.js.map +1 -0
  40. package/dist/es5/lib/parsers/wms/parse-wms-error.js +15 -0
  41. package/dist/es5/lib/parsers/wms/parse-wms-error.js.map +1 -0
  42. package/dist/es5/lib/parsers/wms/parse-wms-features.js +32 -0
  43. package/dist/es5/lib/parsers/wms/parse-wms-features.js.map +1 -0
  44. package/dist/es5/lib/parsers/wms/parse-wms-layer-description.js +12 -0
  45. package/dist/es5/lib/parsers/wms/parse-wms-layer-description.js.map +1 -0
  46. package/dist/es5/lib/parsers/xml/parse-xml-helpers.js +67 -0
  47. package/dist/es5/lib/parsers/xml/parse-xml-helpers.js.map +1 -0
  48. package/dist/es5/lib/{data-sources/image-services → services/arcgis}/arcgis-image-service.js +68 -80
  49. package/dist/es5/lib/services/arcgis/arcgis-image-service.js.map +1 -0
  50. package/dist/es5/lib/services/arcgis/arcgis-server.js +111 -0
  51. package/dist/es5/lib/services/arcgis/arcgis-server.js.map +1 -0
  52. package/dist/es5/lib/{data-sources/adhoc-image-service.js → services/generic/image-service.js} +44 -50
  53. package/dist/es5/lib/services/generic/image-service.js.map +1 -0
  54. package/dist/es5/lib/services/generic/tile-service.js +2 -0
  55. package/dist/es5/lib/services/generic/tile-service.js.map +1 -0
  56. package/dist/es5/lib/services/ogc/csw-service.js +359 -0
  57. package/dist/es5/lib/services/ogc/csw-service.js.map +1 -0
  58. package/dist/es5/lib/services/ogc/wms-service.js +486 -0
  59. package/dist/es5/lib/services/ogc/wms-service.js.map +1 -0
  60. package/dist/es5/lib/services/ogc/wmts-service.ts.disabled +348 -0
  61. package/dist/es5/lib/sources/data-source.js +39 -0
  62. package/dist/es5/lib/sources/data-source.js.map +1 -0
  63. package/dist/es5/lib/sources/image-source.js +26 -0
  64. package/dist/es5/lib/sources/image-source.js.map +1 -0
  65. package/dist/es5/lib/sources/tile-source.js +26 -0
  66. package/dist/es5/lib/sources/tile-source.js.map +1 -0
  67. package/dist/es5/lib/sources/utils/utils.js +36 -0
  68. package/dist/es5/lib/sources/utils/utils.js.map +1 -0
  69. package/dist/es5/wip/arcgis-feature-service.js +2 -7
  70. package/dist/es5/wip/arcgis-feature-service.js.map +1 -1
  71. package/dist/es5/wip/data-source.js +0 -2
  72. package/dist/es5/{lib/wfs/parse-wfs.js → wip/lib/wcs/parse-wcs-capabilities.js} +7 -29
  73. package/dist/es5/wip/lib/wcs/parse-wcs-capabilities.js.map +1 -0
  74. package/dist/es5/{lib/wcs/parse-wcs.js → wip/lib/wfs/parse-wfs-capabilities.js} +7 -28
  75. package/dist/es5/wip/lib/wfs/parse-wfs-capabilities.js.map +1 -0
  76. package/dist/es5/{lib/wmts/parse-wmts.js → wip/lib/wmts/parse-wmts-capabilities.js} +7 -28
  77. package/dist/es5/wip/lib/wmts/parse-wmts-capabilities.js.map +1 -0
  78. package/dist/es5/wip/wcs-capabilities-loader.js +9 -12
  79. package/dist/es5/wip/wcs-capabilities-loader.js.map +1 -1
  80. package/dist/es5/wip/wfs-capabilities-loader.js +9 -12
  81. package/dist/es5/wip/wfs-capabilities-loader.js.map +1 -1
  82. package/dist/es5/wip/wms-feature-info-loader.js +8 -10
  83. package/dist/es5/wip/wms-feature-info-loader.js.map +1 -1
  84. package/dist/es5/wip/wms-layer-description-loader.js +8 -10
  85. package/dist/es5/wip/wms-layer-description-loader.js.map +1 -1
  86. package/dist/es5/wip/wmts-capabilities-loader.js +9 -12
  87. package/dist/es5/wip/wmts-capabilities-loader.js.map +1 -1
  88. package/dist/es5/wms-capabilities-loader.js +9 -12
  89. package/dist/es5/wms-capabilities-loader.js.map +1 -1
  90. package/dist/es5/wms-error-loader.js +9 -11
  91. package/dist/es5/wms-error-loader.js.map +1 -1
  92. package/dist/esm/bundle.js +0 -2
  93. package/dist/esm/bundle.js.map +1 -1
  94. package/dist/esm/csw-capabilities-loader.js +22 -0
  95. package/dist/esm/csw-capabilities-loader.js.map +1 -0
  96. package/dist/esm/csw-domain-loader.js +22 -0
  97. package/dist/esm/csw-domain-loader.js.map +1 -0
  98. package/dist/esm/csw-records-loader.js +21 -0
  99. package/dist/esm/csw-records-loader.js.map +1 -0
  100. package/dist/esm/{wip/gml-loader.js → gml-loader.js} +3 -6
  101. package/dist/esm/gml-loader.js.map +1 -0
  102. package/dist/esm/index.js +11 -14
  103. package/dist/esm/index.js.map +1 -1
  104. package/dist/esm/lerc-loader.js +1 -4
  105. package/dist/esm/lerc-loader.js.map +1 -1
  106. package/dist/esm/lib/{data-sources/create-image-source.js → create-image-source.js} +4 -7
  107. package/dist/esm/lib/create-image-source.js.map +1 -0
  108. package/dist/esm/lib/parsers/csw/parse-csw-capabilities.js +16 -0
  109. package/dist/esm/lib/parsers/csw/parse-csw-capabilities.js.map +1 -0
  110. package/dist/esm/lib/parsers/csw/parse-csw-domain.js +22 -0
  111. package/dist/esm/lib/parsers/csw/parse-csw-domain.js.map +1 -0
  112. package/dist/esm/lib/parsers/csw/parse-csw-records.js +43 -0
  113. package/dist/esm/lib/parsers/csw/parse-csw-records.js.map +1 -0
  114. package/dist/esm/lib/parsers/csw/parse-exception-report.js +10 -0
  115. package/dist/esm/lib/parsers/csw/parse-exception-report.js.map +1 -0
  116. package/dist/esm/lib/{gml → parsers/gml}/deep-strict-equal.js +0 -9
  117. package/dist/esm/lib/parsers/gml/deep-strict-equal.js.map +1 -0
  118. package/dist/esm/lib/{gml → parsers/gml}/parse-gml.js +0 -14
  119. package/dist/esm/lib/parsers/gml/parse-gml.js.map +1 -0
  120. package/dist/esm/lib/parsers/lerc/lerc-types.js.map +1 -0
  121. package/dist/esm/lib/parsers/wms/parse-wms-capabilities.js +174 -0
  122. package/dist/esm/lib/parsers/wms/parse-wms-capabilities.js.map +1 -0
  123. package/dist/esm/lib/parsers/wms/parse-wms-error.js +9 -0
  124. package/dist/esm/lib/parsers/wms/parse-wms-error.js.map +1 -0
  125. package/dist/esm/lib/parsers/wms/parse-wms-features.js +24 -0
  126. package/dist/esm/lib/parsers/wms/parse-wms-features.js.map +1 -0
  127. package/dist/esm/lib/parsers/wms/parse-wms-layer-description.js +6 -0
  128. package/dist/esm/lib/parsers/wms/parse-wms-layer-description.js.map +1 -0
  129. package/dist/esm/lib/parsers/xml/parse-xml-helpers.js +53 -0
  130. package/dist/esm/lib/parsers/xml/parse-xml-helpers.js.map +1 -0
  131. package/dist/esm/lib/services/arcgis/arcgis-image-service.js +58 -0
  132. package/dist/esm/lib/services/arcgis/arcgis-image-service.js.map +1 -0
  133. package/dist/esm/lib/services/arcgis/arcgis-server.js +33 -0
  134. package/dist/esm/lib/services/arcgis/arcgis-server.js.map +1 -0
  135. package/dist/esm/lib/{data-sources/adhoc-image-service.js → services/generic/image-service.js} +11 -13
  136. package/dist/esm/lib/services/generic/image-service.js.map +1 -0
  137. package/dist/esm/lib/services/generic/tile-service.js +2 -0
  138. package/dist/esm/lib/services/generic/tile-service.js.map +1 -0
  139. package/dist/esm/lib/services/ogc/csw-service.js +151 -0
  140. package/dist/esm/lib/services/ogc/csw-service.js.map +1 -0
  141. package/dist/esm/lib/services/ogc/wms-service.js +205 -0
  142. package/dist/esm/lib/services/ogc/wms-service.js.map +1 -0
  143. package/dist/esm/lib/services/ogc/wmts-service.ts.disabled +348 -0
  144. package/dist/esm/lib/sources/data-source.js +23 -0
  145. package/dist/esm/lib/sources/data-source.js.map +1 -0
  146. package/dist/esm/lib/sources/image-source.js +3 -0
  147. package/dist/esm/lib/sources/image-source.js.map +1 -0
  148. package/dist/esm/lib/sources/tile-source.js +3 -0
  149. package/dist/esm/lib/sources/tile-source.js.map +1 -0
  150. package/dist/esm/lib/sources/utils/utils.js +21 -0
  151. package/dist/esm/lib/sources/utils/utils.js.map +1 -0
  152. package/dist/esm/wip/arcgis-feature-service.js +0 -3
  153. package/dist/esm/wip/arcgis-feature-service.js.map +1 -1
  154. package/dist/esm/wip/lib/wcs/parse-wcs-capabilities.js +13 -0
  155. package/dist/esm/wip/lib/wcs/parse-wcs-capabilities.js.map +1 -0
  156. package/dist/esm/wip/lib/wfs/parse-wfs-capabilities.js +14 -0
  157. package/dist/esm/wip/lib/wfs/parse-wfs-capabilities.js.map +1 -0
  158. package/dist/esm/wip/lib/wmts/parse-wmts-capabilities.js +14 -0
  159. package/dist/esm/wip/lib/wmts/parse-wmts-capabilities.js.map +1 -0
  160. package/dist/esm/wip/wcs-capabilities-loader.js +4 -7
  161. package/dist/esm/wip/wcs-capabilities-loader.js.map +1 -1
  162. package/dist/esm/wip/wfs-capabilities-loader.js +2 -5
  163. package/dist/esm/wip/wfs-capabilities-loader.js.map +1 -1
  164. package/dist/esm/wip/wms-feature-info-loader.js +1 -4
  165. package/dist/esm/wip/wms-feature-info-loader.js.map +1 -1
  166. package/dist/esm/wip/wms-layer-description-loader.js +1 -4
  167. package/dist/esm/wip/wms-layer-description-loader.js.map +1 -1
  168. package/dist/esm/wip/wmts-capabilities-loader.js +2 -5
  169. package/dist/esm/wip/wmts-capabilities-loader.js.map +1 -1
  170. package/dist/esm/wms-capabilities-loader.js +4 -7
  171. package/dist/esm/wms-capabilities-loader.js.map +1 -1
  172. package/dist/esm/wms-error-loader.js +2 -5
  173. package/dist/esm/wms-error-loader.js.map +1 -1
  174. package/dist/gml-loader.d.ts.map +1 -0
  175. package/dist/{wip/gml-loader.js → gml-loader.js} +2 -2
  176. package/dist/index.d.ts +24 -18
  177. package/dist/index.d.ts.map +1 -1
  178. package/dist/index.js +28 -18
  179. package/dist/lerc-loader.d.ts +1 -1
  180. package/dist/lerc-loader.d.ts.map +1 -1
  181. package/dist/lib/create-image-source.d.ts +17 -0
  182. package/dist/lib/create-image-source.d.ts.map +1 -0
  183. package/dist/lib/{data-sources/create-image-source.js → create-image-source.js} +5 -5
  184. package/dist/lib/{wmts/wmts-types.d.ts → parsers/csw/parse-csw-capabilities.d.ts} +9 -3
  185. package/dist/lib/parsers/csw/parse-csw-capabilities.d.ts.map +1 -0
  186. package/dist/lib/parsers/csw/parse-csw-capabilities.js +24 -0
  187. package/dist/lib/parsers/csw/parse-csw-domain.d.ts +17 -0
  188. package/dist/lib/parsers/csw/parse-csw-domain.d.ts.map +1 -0
  189. package/dist/lib/parsers/csw/parse-csw-domain.js +33 -0
  190. package/dist/lib/parsers/csw/parse-csw-records.d.ts +33 -0
  191. package/dist/lib/parsers/csw/parse-csw-records.d.ts.map +1 -0
  192. package/dist/lib/parsers/csw/parse-csw-records.js +58 -0
  193. package/dist/lib/parsers/csw/parse-exception-report.d.ts +6 -0
  194. package/dist/lib/parsers/csw/parse-exception-report.d.ts.map +1 -0
  195. package/dist/lib/parsers/csw/parse-exception-report.js +30 -0
  196. package/dist/lib/parsers/gml/deep-strict-equal.d.ts.map +1 -0
  197. package/dist/lib/parsers/gml/parse-gml.d.ts.map +1 -0
  198. package/dist/lib/parsers/lerc/lerc-types.d.ts.map +1 -0
  199. package/dist/lib/parsers/wms/parse-wms-capabilities.d.ts +103 -0
  200. package/dist/lib/parsers/wms/parse-wms-capabilities.d.ts.map +1 -0
  201. package/dist/lib/parsers/wms/parse-wms-capabilities.js +198 -0
  202. package/dist/lib/parsers/wms/parse-wms-error.d.ts +8 -0
  203. package/dist/lib/parsers/wms/parse-wms-error.d.ts.map +1 -0
  204. package/dist/lib/parsers/wms/parse-wms-error.js +22 -0
  205. package/dist/lib/parsers/wms/parse-wms-features.d.ts +20 -0
  206. package/dist/lib/parsers/wms/parse-wms-features.d.ts.map +1 -0
  207. package/dist/lib/parsers/wms/parse-wms-features.js +27 -0
  208. package/dist/lib/parsers/wms/parse-wms-layer-description.d.ts +10 -0
  209. package/dist/lib/parsers/wms/parse-wms-layer-description.d.ts.map +1 -0
  210. package/dist/lib/parsers/wms/parse-wms-layer-description.js +15 -0
  211. package/dist/lib/parsers/xml/parse-xml-helpers.d.ts +11 -0
  212. package/dist/lib/parsers/xml/parse-xml-helpers.d.ts.map +1 -0
  213. package/dist/lib/parsers/xml/parse-xml-helpers.js +68 -0
  214. package/dist/lib/{data-sources/image-services → services/arcgis}/arcgis-image-service.d.ts +25 -13
  215. package/dist/lib/services/arcgis/arcgis-image-service.d.ts.map +1 -0
  216. package/dist/lib/{data-sources → services/arcgis}/arcgis-image-service.js +33 -23
  217. package/dist/lib/services/arcgis/arcgis-server.d.ts +15 -0
  218. package/dist/lib/services/arcgis/arcgis-server.d.ts.map +1 -0
  219. package/dist/lib/services/arcgis/arcgis-server.js +42 -0
  220. package/dist/lib/{data-sources/image-services → services/generic}/image-service.d.ts +3 -13
  221. package/dist/lib/services/generic/image-service.d.ts.map +1 -0
  222. package/dist/lib/{data-sources/adhoc-image-service.js → services/generic/image-service.js} +12 -10
  223. package/dist/lib/services/generic/tile-service.d.ts +1 -0
  224. package/dist/lib/services/generic/tile-service.d.ts.map +1 -0
  225. package/dist/lib/services/generic/tile-service.js +1 -0
  226. package/dist/lib/services/ogc/csw-service.d.ts +115 -0
  227. package/dist/lib/services/ogc/csw-service.d.ts.map +1 -0
  228. package/dist/lib/services/ogc/csw-service.js +170 -0
  229. package/dist/lib/{data-sources/image-services → services/ogc}/wms-service.d.ts +88 -64
  230. package/dist/lib/services/ogc/wms-service.d.ts.map +1 -0
  231. package/dist/lib/services/ogc/wms-service.js +266 -0
  232. package/dist/lib/sources/data-source.d.ts +22 -0
  233. package/dist/lib/sources/data-source.d.ts.map +1 -0
  234. package/dist/lib/sources/data-source.js +34 -0
  235. package/dist/lib/{data-sources → sources}/image-source.d.ts +7 -10
  236. package/dist/lib/sources/image-source.d.ts.map +1 -0
  237. package/dist/lib/{data-sources → sources}/image-source.js +2 -1
  238. package/dist/lib/sources/tile-source.d.ts +54 -0
  239. package/dist/lib/sources/tile-source.d.ts.map +1 -0
  240. package/dist/lib/sources/tile-source.js +13 -0
  241. package/dist/lib/sources/utils/utils.d.ts +13 -0
  242. package/dist/lib/sources/utils/utils.d.ts.map +1 -0
  243. package/dist/lib/sources/utils/utils.js +38 -0
  244. package/dist/{lib/wfs/wfs-types.d.ts → wip/lib/wcs/parse-wcs-capabilities.d.ts} +8 -3
  245. package/dist/wip/lib/wcs/parse-wcs-capabilities.d.ts.map +1 -0
  246. package/dist/wip/lib/wcs/parse-wcs-capabilities.js +15 -0
  247. package/dist/{lib/wcs/wcs-types.d.ts → wip/lib/wfs/parse-wfs-capabilities.d.ts} +6 -1
  248. package/dist/wip/lib/wfs/parse-wfs-capabilities.d.ts.map +1 -0
  249. package/dist/wip/lib/wfs/parse-wfs-capabilities.js +19 -0
  250. package/dist/wip/lib/wmts/parse-wmts-capabilities.d.ts +87 -0
  251. package/dist/wip/lib/wmts/parse-wmts-capabilities.d.ts.map +1 -0
  252. package/dist/wip/lib/wmts/parse-wmts-capabilities.js +77 -0
  253. package/dist/wip/wcs-capabilities-loader.d.ts +4 -3
  254. package/dist/wip/wcs-capabilities-loader.d.ts.map +1 -1
  255. package/dist/wip/wcs-capabilities-loader.js +3 -3
  256. package/dist/wip/wfs-capabilities-loader.d.ts +4 -3
  257. package/dist/wip/wfs-capabilities-loader.d.ts.map +1 -1
  258. package/dist/wip/wfs-capabilities-loader.js +3 -3
  259. package/dist/wip/wms-feature-info-loader.d.ts +4 -2
  260. package/dist/wip/wms-feature-info-loader.d.ts.map +1 -1
  261. package/dist/wip/wms-feature-info-loader.js +3 -3
  262. package/dist/wip/wms-layer-description-loader.d.ts +5 -3
  263. package/dist/wip/wms-layer-description-loader.d.ts.map +1 -1
  264. package/dist/wip/wms-layer-description-loader.js +3 -3
  265. package/dist/wip/wmts-capabilities-loader.d.ts +2 -2
  266. package/dist/wip/wmts-capabilities-loader.d.ts.map +1 -1
  267. package/dist/wip/wmts-capabilities-loader.js +4 -3
  268. package/dist/wms-capabilities-loader.d.ts +10 -4
  269. package/dist/wms-capabilities-loader.d.ts.map +1 -1
  270. package/dist/wms-capabilities-loader.js +3 -3
  271. package/dist/wms-error-loader.js +2 -2
  272. package/package.json +7 -7
  273. package/src/csw-capabilities-loader.ts +46 -0
  274. package/src/csw-domain-loader.ts +44 -0
  275. package/src/csw-records-loader.ts +42 -0
  276. package/src/{wip/gml-loader.ts → gml-loader.ts} +2 -2
  277. package/src/index.ts +49 -30
  278. package/src/lerc-loader.ts +1 -1
  279. package/src/lib/{data-sources/create-image-source.ts → create-image-source.ts} +12 -10
  280. package/src/lib/parsers/csw/parse-csw-capabilities.ts +103 -0
  281. package/src/lib/parsers/csw/parse-csw-domain.ts +45 -0
  282. package/src/lib/parsers/csw/parse-csw-records.ts +90 -0
  283. package/src/lib/parsers/csw/parse-exception-report.ts +31 -0
  284. package/src/lib/parsers/wms/parse-wms-capabilities.ts +361 -0
  285. package/src/lib/parsers/wms/parse-wms-error.ts +22 -0
  286. package/src/lib/parsers/wms/parse-wms-features.ts +39 -0
  287. package/src/lib/parsers/wms/parse-wms-layer-description.ts +18 -0
  288. package/src/lib/parsers/xml/parse-xml-helpers.ts +65 -0
  289. package/src/lib/{data-sources/image-services → services/arcgis}/arcgis-image-service.ts +44 -26
  290. package/src/lib/services/arcgis/arcgis-server.ts +59 -0
  291. package/src/lib/{data-sources/adhoc-image-service.ts → services/generic/image-service.ts} +18 -12
  292. package/src/lib/services/generic/tile-service.ts +0 -0
  293. package/src/lib/services/ogc/csw-service.ts +251 -0
  294. package/src/lib/services/ogc/wms-service.ts +450 -0
  295. package/src/lib/services/ogc/wmts-service.ts.disabled +348 -0
  296. package/src/lib/sources/data-source.ts +46 -0
  297. package/src/lib/{data-sources → sources}/image-source.ts +8 -10
  298. package/src/lib/sources/tile-source.ts +59 -0
  299. package/src/lib/sources/utils/utils.ts +42 -0
  300. package/src/{lib/wmts/wmts-types.ts → wip/lib/wcs/parse-wcs-capabilities.ts} +15 -3
  301. package/src/{lib/wcs/wcs-types.ts → wip/lib/wfs/parse-wfs-capabilities.ts} +18 -1
  302. package/src/wip/lib/wmts/parse-wmts-capabilities.ts +170 -0
  303. package/src/wip/wcs-capabilities-loader.ts +6 -3
  304. package/src/wip/wfs-capabilities-loader.ts +4 -1
  305. package/src/wip/wms-feature-info-loader.ts +5 -1
  306. package/src/wip/wms-layer-description-loader.ts +7 -2
  307. package/src/wip/wmts-capabilities-loader.ts +4 -1
  308. package/src/wms-capabilities-loader.ts +14 -4
  309. package/src/wms-error-loader.ts +1 -1
  310. package/dist/es5/lib/data-sources/adhoc-image-service.js.map +0 -1
  311. package/dist/es5/lib/data-sources/arcgis-image-service.js +0 -180
  312. package/dist/es5/lib/data-sources/arcgis-image-service.js.map +0 -1
  313. package/dist/es5/lib/data-sources/create-image-source.js.map +0 -1
  314. package/dist/es5/lib/data-sources/image-services/arcgis-image-service.js.map +0 -1
  315. package/dist/es5/lib/data-sources/image-services/image-service.js +0 -163
  316. package/dist/es5/lib/data-sources/image-services/image-service.js.map +0 -1
  317. package/dist/es5/lib/data-sources/image-services/wms-service.js +0 -400
  318. package/dist/es5/lib/data-sources/image-services/wms-service.js.map +0 -1
  319. package/dist/es5/lib/data-sources/image-source.js +0 -14
  320. package/dist/es5/lib/data-sources/image-source.js.map +0 -1
  321. package/dist/es5/lib/gml/deep-strict-equal.js.map +0 -1
  322. package/dist/es5/lib/gml/parse-gml.js.map +0 -1
  323. package/dist/es5/lib/lerc/lerc-types.js.map +0 -1
  324. package/dist/es5/lib/wcs/parse-wcs.js.map +0 -1
  325. package/dist/es5/lib/wcs/wcs-types.js +0 -2
  326. package/dist/es5/lib/wcs/wcs-types.js.map +0 -1
  327. package/dist/es5/lib/wfs/parse-wfs.js.map +0 -1
  328. package/dist/es5/lib/wfs/wfs-types.js +0 -2
  329. package/dist/es5/lib/wfs/wfs-types.js.map +0 -1
  330. package/dist/es5/lib/wms/parse-wms.js +0 -135
  331. package/dist/es5/lib/wms/parse-wms.js.map +0 -1
  332. package/dist/es5/lib/wms/wms-types.js +0 -2
  333. package/dist/es5/lib/wms/wms-types.js.map +0 -1
  334. package/dist/es5/lib/wmts/parse-wmts.js.map +0 -1
  335. package/dist/es5/lib/wmts/wmts-types.js +0 -2
  336. package/dist/es5/lib/wmts/wmts-types.js.map +0 -1
  337. package/dist/es5/wip/gml-loader.js.map +0 -1
  338. package/dist/esm/lib/data-sources/adhoc-image-service.js.map +0 -1
  339. package/dist/esm/lib/data-sources/arcgis-image-service.js +0 -62
  340. package/dist/esm/lib/data-sources/arcgis-image-service.js.map +0 -1
  341. package/dist/esm/lib/data-sources/create-image-source.js.map +0 -1
  342. package/dist/esm/lib/data-sources/image-services/arcgis-image-service.js +0 -61
  343. package/dist/esm/lib/data-sources/image-services/arcgis-image-service.js.map +0 -1
  344. package/dist/esm/lib/data-sources/image-services/image-service.js +0 -72
  345. package/dist/esm/lib/data-sources/image-services/image-service.js.map +0 -1
  346. package/dist/esm/lib/data-sources/image-services/wms-service.js +0 -190
  347. package/dist/esm/lib/data-sources/image-services/wms-service.js.map +0 -1
  348. package/dist/esm/lib/data-sources/image-source.js +0 -4
  349. package/dist/esm/lib/data-sources/image-source.js.map +0 -1
  350. package/dist/esm/lib/gml/deep-strict-equal.js.map +0 -1
  351. package/dist/esm/lib/gml/parse-gml.js.map +0 -1
  352. package/dist/esm/lib/lerc/lerc-types.js.map +0 -1
  353. package/dist/esm/lib/wcs/parse-wcs.js +0 -32
  354. package/dist/esm/lib/wcs/parse-wcs.js.map +0 -1
  355. package/dist/esm/lib/wcs/wcs-types.js +0 -2
  356. package/dist/esm/lib/wcs/wcs-types.js.map +0 -1
  357. package/dist/esm/lib/wfs/parse-wfs.js +0 -32
  358. package/dist/esm/lib/wfs/parse-wfs.js.map +0 -1
  359. package/dist/esm/lib/wfs/wfs-types.js +0 -2
  360. package/dist/esm/lib/wfs/wfs-types.js.map +0 -1
  361. package/dist/esm/lib/wms/parse-wms.js +0 -101
  362. package/dist/esm/lib/wms/parse-wms.js.map +0 -1
  363. package/dist/esm/lib/wms/wms-types.js +0 -2
  364. package/dist/esm/lib/wms/wms-types.js.map +0 -1
  365. package/dist/esm/lib/wmts/parse-wmts.js +0 -32
  366. package/dist/esm/lib/wmts/parse-wmts.js.map +0 -1
  367. package/dist/esm/lib/wmts/wmts-types.js +0 -2
  368. package/dist/esm/lib/wmts/wmts-types.js.map +0 -1
  369. package/dist/esm/wip/gml-loader.js.map +0 -1
  370. package/dist/lib/data-sources/adhoc-image-service.d.ts +0 -24
  371. package/dist/lib/data-sources/adhoc-image-service.d.ts.map +0 -1
  372. package/dist/lib/data-sources/arcgis-image-service.d.ts +0 -79
  373. package/dist/lib/data-sources/arcgis-image-service.d.ts.map +0 -1
  374. package/dist/lib/data-sources/create-image-source.d.ts +0 -16
  375. package/dist/lib/data-sources/create-image-source.d.ts.map +0 -1
  376. package/dist/lib/data-sources/image-services/arcgis-image-service.d.ts.map +0 -1
  377. package/dist/lib/data-sources/image-services/arcgis-image-service.js +0 -85
  378. package/dist/lib/data-sources/image-services/image-service.d.ts.map +0 -1
  379. package/dist/lib/data-sources/image-services/image-service.js +0 -82
  380. package/dist/lib/data-sources/image-services/wms-service.d.ts.map +0 -1
  381. package/dist/lib/data-sources/image-services/wms-service.js +0 -218
  382. package/dist/lib/data-sources/image-source.d.ts.map +0 -1
  383. package/dist/lib/gml/deep-strict-equal.d.ts.map +0 -1
  384. package/dist/lib/gml/parse-gml.d.ts.map +0 -1
  385. package/dist/lib/lerc/lerc-types.d.ts.map +0 -1
  386. package/dist/lib/wcs/parse-wcs.d.ts +0 -7
  387. package/dist/lib/wcs/parse-wcs.d.ts.map +0 -1
  388. package/dist/lib/wcs/parse-wcs.js +0 -36
  389. package/dist/lib/wcs/wcs-types.d.ts.map +0 -1
  390. package/dist/lib/wcs/wcs-types.js +0 -3
  391. package/dist/lib/wfs/parse-wfs.d.ts +0 -7
  392. package/dist/lib/wfs/parse-wfs.d.ts.map +0 -1
  393. package/dist/lib/wfs/parse-wfs.js +0 -36
  394. package/dist/lib/wfs/wfs-types.d.ts.map +0 -1
  395. package/dist/lib/wfs/wfs-types.js +0 -3
  396. package/dist/lib/wms/parse-wms.d.ts +0 -24
  397. package/dist/lib/wms/parse-wms.d.ts.map +0 -1
  398. package/dist/lib/wms/parse-wms.js +0 -115
  399. package/dist/lib/wms/wms-types.d.ts +0 -100
  400. package/dist/lib/wms/wms-types.d.ts.map +0 -1
  401. package/dist/lib/wms/wms-types.js +0 -1908
  402. package/dist/lib/wmts/parse-wmts.d.ts +0 -7
  403. package/dist/lib/wmts/parse-wmts.d.ts.map +0 -1
  404. package/dist/lib/wmts/parse-wmts.js +0 -36
  405. package/dist/lib/wmts/wmts-types.d.ts.map +0 -1
  406. package/dist/lib/wmts/wmts-types.js +0 -3
  407. package/dist/wip/gml-loader.d.ts.map +0 -1
  408. package/src/lib/data-sources/arcgis-image-service.ts +0 -146
  409. package/src/lib/data-sources/image-services/image-service.ts +0 -105
  410. package/src/lib/data-sources/image-services/wms-service.ts +0 -351
  411. package/src/lib/wcs/parse-wcs.ts +0 -39
  412. package/src/lib/wfs/parse-wfs.ts +0 -39
  413. package/src/lib/wfs/wfs-types.ts +0 -78
  414. package/src/lib/wms/parse-wms.ts +0 -142
  415. package/src/lib/wms/wms-types.ts +0 -2053
  416. package/src/lib/wmts/parse-wmts.ts +0 -39
  417. /package/dist/es5/lib/{lerc → parsers/lerc}/lerc-types.js +0 -0
  418. /package/dist/esm/lib/{lerc → parsers/lerc}/lerc-types.js +0 -0
  419. /package/dist/{wip/gml-loader.d.ts → gml-loader.d.ts} +0 -0
  420. /package/dist/lib/{gml → parsers/gml}/deep-strict-equal.d.ts +0 -0
  421. /package/dist/lib/{gml → parsers/gml}/deep-strict-equal.js +0 -0
  422. /package/dist/lib/{gml → parsers/gml}/parse-gml.d.ts +0 -0
  423. /package/dist/lib/{gml → parsers/gml}/parse-gml.js +0 -0
  424. /package/dist/lib/{lerc → parsers/lerc}/lerc-types.d.ts +0 -0
  425. /package/dist/lib/{lerc → parsers/lerc}/lerc-types.js +0 -0
  426. /package/src/lib/{gml → parsers/gml}/deep-strict-equal.ts +0 -0
  427. /package/src/lib/{gml → parsers/gml}/parse-gml.ts +0 -0
  428. /package/src/lib/{lerc → parsers/lerc}/lerc-types.ts +0 -0
@@ -1,2053 +0,0 @@
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
- type: string;
43
- bounds: {top: number; bottom: number; left: number; right: number};
44
- };
45
-
46
- // DescribeLayer
47
-
48
- /** Layer description - response to a WMS `DescribeLayer` request */
49
- export type WMSLayerDescription = {
50
- layers: {}[];
51
- };
52
-
53
- // // WIP
54
-
55
- // export type GetCapabilities = {
56
- // request: 'GetCapabilities';
57
- // format: string[];
58
- // dcpType: unknown;
59
- // };
60
-
61
- // export type GetMap = {
62
- // request: 'GetMap';
63
- // format: string[];
64
- // dcpType: unknown;
65
- // };
66
-
67
- // export type GetFeatureInfo = {
68
- // request: 'GetFeatureInfo';
69
- // format: string[];
70
- // dcpType: unknown;
71
- // };
72
-
73
- // export type GetLegendGraphic = {
74
- // request: 'GetLegendGraphic';
75
- // format: string[];
76
- // dcpType: unknown;
77
- // };
78
-
79
- // export type GetStyles = {
80
- // request: 'GetStyles';
81
- // format: string[];
82
- // dcpType: unknown;
83
- // };
84
-
85
- /**
86
- * <EX_GeographicBoundingBox>
87
- * <westBoundLongitude>-180</westBoundLongitude>
88
- * <eastBoundLongitude>180</eastBoundLongitude>
89
- * <southBoundLatitude>-65</southBoundLatitude>
90
- * <northBoundLatitude>75</northBoundLatitude>
91
- * </EX_GeographicBoundingBox>
92
- * <BoundingBox CRS="EPSG:4326"
93
- * minx="-65" miny="-180" maxx="75" maxy="180" />
94
- */
95
- export type Layer = {
96
- name: string; // e.g. DMSP-Global-Composites-Version-4
97
- title: string; // e.g. DMSP-Global-Composites-Version-4</Title>
98
- abstract?: string; // DMSP-Global-Composites-Version-4</Abstract>
99
- crs: string; // e.g. EPSG:4326</CRS>
100
- queryable?: boolean;
101
- opaque?: boolean;
102
- cascaded?: boolean;
103
- geographicBoundingBox: number[];
104
- boundingBox: number[];
105
- boundingBoxCRS: string;
106
- layers: Layer[];
107
- };
108
-
109
- /**
110
- * <Style>
111
- * <Name>default</Name>
112
- * <Title>default</Title>
113
- * <LegendURL width="89" height="21">
114
- * <Format>image/png</Format>
115
- * <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"/>
116
- * </LegendURL>
117
- * </Style>
118
- */
119
- export type Style = {
120
- name: string; // e.g. DMSP-Global-Composites-Version-4
121
- title: string; // e.g. DMSP-Global-Composites-Version-4</Title>
122
- legendUrl?: {
123
- width: number;
124
- height: number;
125
- format: string;
126
- onlineResource: string;
127
- };
128
- };
129
-
130
- // export type Capability = GetCapabilities | GetMap;
131
-
132
- export type WMSService = {
133
- rawData: unknown;
134
- name: string;
135
- title: string;
136
- onlineResource?: string;
137
- contactInformation?: string;
138
- maxWidth?: number;
139
- maxHeight?: number;
140
- capabilities: {
141
- // getCapabilities: GetCapabilities;
142
- // getMap: GetMap;
143
- // getFeatureInfo?: GetFeatureInfo;
144
- };
145
-
146
- untypedData: unknown; // The raw, untyped JSON converted from XML
147
- };
148
-
149
- /*
150
- <Capability>
151
- <Request>
152
- <GetCapabilities>
153
- <Format>text/xml</Format>
154
- <DCPType>
155
- <HTTP>
156
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
157
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
158
- </HTTP>
159
- </DCPType>
160
- </GetCapabilities>
161
- <GetMap>
162
- <Format>image/png</Format>
163
- <Format>image/tiff</Format>
164
- <Format>image/jpeg</Format>
165
- <Format>image/png; mode=8bit</Format>
166
- <Format>application/x-pdf</Format>
167
- <Format>image/svg+xml</Format>
168
- <DCPType>
169
- <HTTP>
170
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
171
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
172
- </HTTP>
173
- </DCPType>
174
- </GetMap>
175
- <GetFeatureInfo>
176
- <Format>text/plain</Format>
177
- <Format>application/vnd.ogc.gml</Format>
178
- <DCPType>
179
- <HTTP>
180
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
181
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
182
- </HTTP>
183
- </DCPType>
184
- </GetFeatureInfo>
185
- <sld:DescribeLayer>
186
- <Format>text/xml</Format>
187
- <DCPType>
188
- <HTTP>
189
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
190
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
191
- </HTTP>
192
- </DCPType>
193
- </sld:DescribeLayer>
194
- <sld:GetLegendGraphic>
195
- <Format>image/png</Format>
196
- <Format>image/jpeg</Format>
197
- <Format>image/png; mode=8bit</Format>
198
- <DCPType>
199
- <HTTP>
200
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
201
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
202
- </HTTP>
203
- </DCPType>
204
- </sld:GetLegendGraphic>
205
- <ms:GetStyles>
206
- <Format>text/xml</Format>
207
- <DCPType>
208
- <HTTP>
209
- <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Get>
210
- <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mapserver.ngdc.noaa.gov/cgi-bin/public/gcv4/?"/></Post>
211
- </HTTP>
212
- </DCPType>
213
- </ms:GetStyles>
214
- </Request>
215
- <Exception>
216
- <Format>XML</Format>
217
- <Format>INIMAGE</Format>
218
- <Format>BLANK</Format>
219
- </Exception>
220
- <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/>
221
- <Layer>
222
- <Name>DMSP-Global-Composites-Version-4</Name>
223
- <Title>DMSP-Global-Composites-Version-4</Title>
224
- <Abstract>DMSP-Global-Composites-Version-4</Abstract>
225
- <CRS>EPSG:4326</CRS>
226
- <EX_GeographicBoundingBox>
227
- <westBoundLongitude>-180</westBoundLongitude>
228
- <eastBoundLongitude>180</eastBoundLongitude>
229
- <southBoundLatitude>-65</southBoundLatitude>
230
- <northBoundLatitude>75</northBoundLatitude>
231
- </EX_GeographicBoundingBox>
232
- <BoundingBox CRS="EPSG:4326"
233
- minx="-65" miny="-180" maxx="75" maxy="180" />
234
- <Layer queryable="0" opaque="0" cascaded="0">
235
- <Name>countries</Name>
236
- <Title>Countries</Title>
237
- <CRS>EPSG:4326</CRS>
238
- <EX_GeographicBoundingBox>
239
- <westBoundLongitude>-180</westBoundLongitude>
240
- <eastBoundLongitude>180</eastBoundLongitude>
241
- <southBoundLatitude>-90</southBoundLatitude>
242
- <northBoundLatitude>83.6236</northBoundLatitude>
243
- </EX_GeographicBoundingBox>
244
- <BoundingBox CRS="EPSG:4326"
245
- minx="-90" miny="-180" maxx="83.6236" maxy="180" />
246
- <Style>
247
- <Name>default</Name>
248
- <Title>default</Title>
249
- <LegendURL width="89" height="21">
250
- <Format>image/png</Format>
251
- <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"/>
252
- </LegendURL>
253
- </Style>
254
- </Layer>
255
- <Layer queryable="0" opaque="0" cascaded="0">
256
- <Name>adminboundaries</Name>
257
- <Title>Administrative Boundaries</Title>
258
- <CRS>EPSG:4326</CRS>
259
- <EX_GeographicBoundingBox>
260
- <westBoundLongitude>-180</westBoundLongitude>
261
- <eastBoundLongitude>180</eastBoundLongitude>
262
- <southBoundLatitude>-90</southBoundLatitude>
263
- <northBoundLatitude>83.6236</northBoundLatitude>
264
- </EX_GeographicBoundingBox>
265
- <BoundingBox CRS="EPSG:4326"
266
- minx="-90" miny="-180" maxx="83.6236" maxy="180" />
267
- <Style>
268
- <Name>default</Name>
269
- <Title>default</Title>
270
- <LegendURL width="65" height="21">
271
- <Format>image/png</Format>
272
- <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"/>
273
- </LegendURL>
274
- </Style>
275
- </Layer>
276
- <Layer queryable="0" opaque="0" cascaded="0">
277
- <Name>eez</Name>
278
- <Title>EEZ Boundaries</Title>
279
- <CRS>EPSG:4326</CRS>
280
- <EX_GeographicBoundingBox>
281
- <westBoundLongitude>-179.999</westBoundLongitude>
282
- <eastBoundLongitude>179.999</eastBoundLongitude>
283
- <southBoundLatitude>-85.4703</southBoundLatitude>
284
- <northBoundLatitude>87.0239</northBoundLatitude>
285
- </EX_GeographicBoundingBox>
286
- <BoundingBox CRS="EPSG:4326"
287
- minx="-85.4703" miny="-179.999" maxx="87.0239" maxy="179.999" />
288
- <Style>
289
- <Name>default</Name>
290
- <Title>default</Title>
291
- <LegendURL width="53" height="21">
292
- <Format>image/png</Format>
293
- <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"/>
294
- </LegendURL>
295
- </Style>
296
- </Layer>
297
- <Layer queryable="0" opaque="0" cascaded="0">
298
- <Name>cities</Name>
299
- <Title>Cities</Title>
300
- <CRS>EPSG:4326</CRS>
301
- <EX_GeographicBoundingBox>
302
- <westBoundLongitude>-176.152</westBoundLongitude>
303
- <eastBoundLongitude>179.222</eastBoundLongitude>
304
- <southBoundLatitude>-54.792</southBoundLatitude>
305
- <northBoundLatitude>78.2</northBoundLatitude>
306
- </EX_GeographicBoundingBox>
307
- <BoundingBox CRS="EPSG:4326"
308
- minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
309
- <Style>
310
- <Name>default</Name>
311
- <Title>default</Title>
312
- <LegendURL width="71" height="21">
313
- <Format>image/png</Format>
314
- <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"/>
315
- </LegendURL>
316
- </Style>
317
- </Layer>
318
- <Layer queryable="0" opaque="0" cascaded="0">
319
- <Name>citieslabeled</Name>
320
- <Title>Cities With Labels</Title>
321
- <CRS>EPSG:4326</CRS>
322
- <EX_GeographicBoundingBox>
323
- <westBoundLongitude>-176.152</westBoundLongitude>
324
- <eastBoundLongitude>179.222</eastBoundLongitude>
325
- <southBoundLatitude>-54.792</southBoundLatitude>
326
- <northBoundLatitude>78.2</northBoundLatitude>
327
- </EX_GeographicBoundingBox>
328
- <BoundingBox CRS="EPSG:4326"
329
- minx="-54.792" miny="-176.152" maxx="78.2" maxy="179.222" />
330
- </Layer>
331
- <Layer queryable="0" opaque="0" cascaded="0">
332
- <Name>land</Name>
333
- <Title>Land Sea Mask</Title>
334
- <CRS>EPSG:4326</CRS>
335
- <EX_GeographicBoundingBox>
336
- <westBoundLongitude>-180</westBoundLongitude>
337
- <eastBoundLongitude>180</eastBoundLongitude>
338
- <southBoundLatitude>-90</southBoundLatitude>
339
- <northBoundLatitude>83.6236</northBoundLatitude>
340
- </EX_GeographicBoundingBox>
341
- <BoundingBox CRS="EPSG:4326"
342
- minx="-90" miny="-180" maxx="83.6236" maxy="180" />
343
- <Style>
344
- <Name>default</Name>
345
- <Title>default</Title>
346
- <LegendURL width="59" height="21">
347
- <Format>image/png</Format>
348
- <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"/>
349
- </LegendURL>
350
- </Style>
351
- </Layer>
352
- <Layer queryable="0" opaque="0" cascaded="0">
353
- <Name>LandSeaMask</Name>
354
- <Title>LandSeaMask</Title>
355
- <CRS>EPSG:4326</CRS>
356
- <EX_GeographicBoundingBox>
357
- <westBoundLongitude>-180</westBoundLongitude>
358
- <eastBoundLongitude>180</eastBoundLongitude>
359
- <southBoundLatitude>-90</southBoundLatitude>
360
- <northBoundLatitude>90</northBoundLatitude>
361
- </EX_GeographicBoundingBox>
362
- <BoundingBox CRS="EPSG:4326"
363
- minx="-90" miny="-180" maxx="90" maxy="180" />
364
- </Layer>
365
- <Layer queryable="0" opaque="0" cascaded="0">
366
- <Name>Rivers</Name>
367
- <Title>Rivers</Title>
368
- <CRS>EPSG:4326</CRS>
369
- <EX_GeographicBoundingBox>
370
- <westBoundLongitude>-164.887</westBoundLongitude>
371
- <eastBoundLongitude>160.764</eastBoundLongitude>
372
- <southBoundLatitude>-36.9694</southBoundLatitude>
373
- <northBoundLatitude>71.3925</northBoundLatitude>
374
- </EX_GeographicBoundingBox>
375
- <BoundingBox CRS="EPSG:4326"
376
- minx="-36.9694" miny="-164.887" maxx="71.3925" maxy="160.764" />
377
- <Style>
378
- <Name>default</Name>
379
- <Title>default</Title>
380
- <LegendURL width="71" height="21">
381
- <Format>image/png</Format>
382
- <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"/>
383
- </LegendURL>
384
- </Style>
385
- </Layer>
386
- <Layer queryable="0" opaque="0" cascaded="0">
387
- <Name>F101992.v4b.avg_lights_x_pct.lzw.tif</Name>
388
- <Title>F101992.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>F101992.v4b_web.avg_vis.lzw.tif</Name>
401
- <Title>F101992.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>F101992.v4b_web.cf_cvg.lzw.tif</Name>
414
- <Title>F101992.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>F101992.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
427
- <Title>F101992.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>F101993.v4b.avg_lights_x_pct.lzw.tif</Name>
440
- <Title>F101993.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>F101993.v4b_web.avg_vis.lzw.tif</Name>
453
- <Title>F101993.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>F101993.v4b_web.cf_cvg.lzw.tif</Name>
466
- <Title>F101993.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>F101993.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
479
- <Title>F101993.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>F101994.v4b.avg_lights_x_pct.lzw.tif</Name>
492
- <Title>F101994.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>F101994.v4b_web.avg_vis.lzw.tif</Name>
505
- <Title>F101994.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>F101994.v4b_web.cf_cvg.lzw.tif</Name>
518
- <Title>F101994.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>F101994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
531
- <Title>F101994.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>F121994.v4b.avg_lights_x_pct.lzw.tif</Name>
544
- <Title>F121994.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>F121994.v4b_web.avg_vis.lzw.tif</Name>
557
- <Title>F121994.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>F121994.v4b_web.cf_cvg.lzw.tif</Name>
570
- <Title>F121994.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>F121994.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
583
- <Title>F121994.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>F121995.v4b.avg_lights_x_pct.lzw.tif</Name>
596
- <Title>F121995.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>F121995.v4b_web.avg_vis.lzw.tif</Name>
609
- <Title>F121995.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>F121995.v4b_web.cf_cvg.lzw.tif</Name>
622
- <Title>F121995.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>F121995.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
635
- <Title>F121995.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>F121996.v4b.avg_lights_x_pct.lzw.tif</Name>
648
- <Title>F121996.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>F121996.v4b_web.avg_vis.lzw.tif</Name>
661
- <Title>F121996.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>F121996.v4b_web.cf_cvg.lzw.tif</Name>
674
- <Title>F121996.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>F121996.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
687
- <Title>F121996.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>F121997.v4b.avg_lights_x_pct.lzw.tif</Name>
700
- <Title>F121997.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>F121997.v4b_web.avg_vis.lzw.tif</Name>
713
- <Title>F121997.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>F121997.v4b_web.cf_cvg.lzw.tif</Name>
726
- <Title>F121997.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>F121997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
739
- <Title>F121997.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>F121998.v4b.avg_lights_x_pct.lzw.tif</Name>
752
- <Title>F121998.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>F121998.v4b_web.avg_vis.lzw.tif</Name>
765
- <Title>F121998.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>F121998.v4b_web.cf_cvg.lzw.tif</Name>
778
- <Title>F121998.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>F121998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
791
- <Title>F121998.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>F121999.v4b.avg_lights_x_pct.lzw.tif</Name>
804
- <Title>F121999.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>F121999.v4b_web.avg_vis.lzw.tif</Name>
817
- <Title>F121999.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>F121999.v4b_web.cf_cvg.lzw.tif</Name>
830
- <Title>F121999.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>F121999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
843
- <Title>F121999.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>F141997.v4b.avg_lights_x_pct.lzw.tif</Name>
856
- <Title>F141997.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>F141997.v4b_web.avg_vis.lzw.tif</Name>
869
- <Title>F141997.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>F141997.v4b_web.cf_cvg.lzw.tif</Name>
882
- <Title>F141997.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>F141997.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
895
- <Title>F141997.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>F141998.v4b.avg_lights_x_pct.lzw.tif</Name>
908
- <Title>F141998.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>F141998.v4b_web.avg_vis.lzw.tif</Name>
921
- <Title>F141998.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>F141998.v4b_web.cf_cvg.lzw.tif</Name>
934
- <Title>F141998.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>F141998.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
947
- <Title>F141998.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>F141999.v4b.avg_lights_x_pct.lzw.tif</Name>
960
- <Title>F141999.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>F141999.v4b_web.avg_vis.lzw.tif</Name>
973
- <Title>F141999.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>F141999.v4b_web.cf_cvg.lzw.tif</Name>
986
- <Title>F141999.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>F141999.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
999
- <Title>F141999.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>F142000.v4b.avg_lights_x_pct.lzw.tif</Name>
1012
- <Title>F142000.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>F142000.v4b_web.avg_vis.lzw.tif</Name>
1025
- <Title>F142000.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>F142000.v4b_web.cf_cvg.lzw.tif</Name>
1038
- <Title>F142000.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>F142000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1051
- <Title>F142000.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>F142001.v4b.avg_lights_x_pct.lzw.tif</Name>
1064
- <Title>F142001.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>F142001.v4b_web.avg_vis.lzw.tif</Name>
1077
- <Title>F142001.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>F142001.v4b_web.cf_cvg.lzw.tif</Name>
1090
- <Title>F142001.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>F142001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1103
- <Title>F142001.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>F142002.v4b.avg_lights_x_pct.lzw.tif</Name>
1116
- <Title>F142002.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>F142002.v4b_web.avg_vis.lzw.tif</Name>
1129
- <Title>F142002.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>F142002.v4b_web.cf_cvg.lzw.tif</Name>
1142
- <Title>F142002.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>F142002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1155
- <Title>F142002.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>F142003.v4b.avg_lights_x_pct.lzw.tif</Name>
1168
- <Title>F142003.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>F142003.v4b_web.avg_vis.lzw.tif</Name>
1181
- <Title>F142003.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>F142003.v4b_web.cf_cvg.lzw.tif</Name>
1194
- <Title>F142003.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>F142003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1207
- <Title>F142003.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>F152000.v4b.avg_lights_x_pct.lzw.tif</Name>
1220
- <Title>F152000.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>F152000.v4b_web.avg_vis.lzw.tif</Name>
1233
- <Title>F152000.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>F152000.v4b_web.cf_cvg.lzw.tif</Name>
1246
- <Title>F152000.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>F152000.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1259
- <Title>F152000.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>F152001.v4b.avg_lights_x_pct.lzw.tif</Name>
1272
- <Title>F152001.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>F152001.v4b_web.avg_vis.lzw.tif</Name>
1285
- <Title>F152001.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>F152001.v4b_web.cf_cvg.lzw.tif</Name>
1298
- <Title>F152001.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>F152001.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1311
- <Title>F152001.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>F152002.v4b.avg_lights_x_pct.lzw.tif</Name>
1324
- <Title>F152002.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>F152002.v4b_web.avg_vis.lzw.tif</Name>
1337
- <Title>F152002.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>F152002.v4b_web.cf_cvg.lzw.tif</Name>
1350
- <Title>F152002.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>F152002.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1363
- <Title>F152002.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>F152003.v4b.avg_lights_x_pct.lzw.tif</Name>
1376
- <Title>F152003.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>F152003.v4b_web.avg_vis.lzw.tif</Name>
1389
- <Title>F152003.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>F152003.v4b_web.cf_cvg.lzw.tif</Name>
1402
- <Title>F152003.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>F152003.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1415
- <Title>F152003.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>F152004.v4b.avg_lights_x_pct.lzw.tif</Name>
1428
- <Title>F152004.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>F152004.v4b_web.avg_vis.lzw.tif</Name>
1441
- <Title>F152004.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>F152004.v4b_web.cf_cvg.lzw.tif</Name>
1454
- <Title>F152004.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>F152004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1467
- <Title>F152004.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>F152005.v4b.avg_lights_x_pct.lzw.tif</Name>
1480
- <Title>F152005.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>F152005.v4b_web.avg_vis.lzw.tif</Name>
1493
- <Title>F152005.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>F152005.v4b_web.cf_cvg.lzw.tif</Name>
1506
- <Title>F152005.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>F152005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1519
- <Title>F152005.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>F152006.v4b.avg_lights_x_pct.lzw.tif</Name>
1532
- <Title>F152006.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>F152006.v4b_web.avg_vis.lzw.tif</Name>
1545
- <Title>F152006.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>F152006.v4b_web.cf_cvg.lzw.tif</Name>
1558
- <Title>F152006.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>F152006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1571
- <Title>F152006.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>F152007.v4b.avg_lights_x_pct.lzw.tif</Name>
1584
- <Title>F152007.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>F152007.v4b_web.avg_vis.lzw.tif</Name>
1597
- <Title>F152007.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>F152007.v4b_web.cf_cvg.lzw.tif</Name>
1610
- <Title>F152007.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>F152007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1623
- <Title>F152007.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>F152008.v4b.avg_lights_x_pct.lzw.tif</Name>
1636
- <Title>F152008.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>F152008.v4b_web.avg_vis.lzw.tif</Name>
1649
- <Title>F152008.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>F152008.v4b_web.cf_cvg.lzw.tif</Name>
1662
- <Title>F152008.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>F152008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1675
- <Title>F152008.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>F162004.v4b.avg_lights_x_pct.lzw.tif</Name>
1688
- <Title>F162004.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>F162004.v4b_web.avg_vis.lzw.tif</Name>
1701
- <Title>F162004.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>F162004.v4b_web.cf_cvg.lzw.tif</Name>
1714
- <Title>F162004.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>F162004.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1727
- <Title>F162004.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>F162005.v4b.avg_lights_x_pct.lzw.tif</Name>
1740
- <Title>F162005.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>F162005.v4b_web.avg_vis.lzw.tif</Name>
1753
- <Title>F162005.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>F162005.v4b_web.cf_cvg.lzw.tif</Name>
1766
- <Title>F162005.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>F162005.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1779
- <Title>F162005.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>F162006.v4b.avg_lights_x_pct.lzw.tif</Name>
1792
- <Title>F162006.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>F162006.v4b_web.avg_vis.lzw.tif</Name>
1805
- <Title>F162006.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>F162006.v4b_web.cf_cvg.lzw.tif</Name>
1818
- <Title>F162006.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>F162006.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1831
- <Title>F162006.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>F162007.v4b.avg_lights_x_pct.lzw.tif</Name>
1844
- <Title>F162007.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>F162007.v4b_web.avg_vis.lzw.tif</Name>
1857
- <Title>F162007.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>F162007.v4b_web.cf_cvg.lzw.tif</Name>
1870
- <Title>F162007.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>F162007.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1883
- <Title>F162007.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>F162008.v4b.avg_lights_x_pct.lzw.tif</Name>
1896
- <Title>F162008.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>F162008.v4b_web.avg_vis.lzw.tif</Name>
1909
- <Title>F162008.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>F162008.v4b_web.cf_cvg.lzw.tif</Name>
1922
- <Title>F162008.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>F162008.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1935
- <Title>F162008.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>F162009.v4b.avg_lights_x_pct.lzw.tif</Name>
1948
- <Title>F162009.v4b.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>F162009.v4b_web.avg_vis.lzw.tif</Name>
1961
- <Title>F162009.v4b_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>F162009.v4b_web.cf_cvg.lzw.tif</Name>
1974
- <Title>F162009.v4b_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>F162009.v4b_web.stable_lights.avg_vis.lzw.tif</Name>
1987
- <Title>F162009.v4b_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 queryable="0" opaque="0" cascaded="0">
1999
- <Name>F182010.v4c.avg_lights_x_pct.lzw.tif</Name>
2000
- <Title>F182010.v4c.avg_lights_x_pct.lzw.tif</Title>
2001
- <CRS>EPSG:4326</CRS>
2002
- <EX_GeographicBoundingBox>
2003
- <westBoundLongitude>-180</westBoundLongitude>
2004
- <eastBoundLongitude>180</eastBoundLongitude>
2005
- <southBoundLatitude>-65</southBoundLatitude>
2006
- <northBoundLatitude>75</northBoundLatitude>
2007
- </EX_GeographicBoundingBox>
2008
- <BoundingBox CRS="EPSG:4326"
2009
- minx="-65" miny="-180" maxx="75" maxy="180" />
2010
- </Layer>
2011
- <Layer queryable="0" opaque="0" cascaded="0">
2012
- <Name>F182010.v4c_web.avg_vis.lzw.tif</Name>
2013
- <Title>F182010.v4c_web.avg_vis.lzw.tif</Title>
2014
- <CRS>EPSG:4326</CRS>
2015
- <EX_GeographicBoundingBox>
2016
- <westBoundLongitude>-180</westBoundLongitude>
2017
- <eastBoundLongitude>180</eastBoundLongitude>
2018
- <southBoundLatitude>-65</southBoundLatitude>
2019
- <northBoundLatitude>75</northBoundLatitude>
2020
- </EX_GeographicBoundingBox>
2021
- <BoundingBox CRS="EPSG:4326"
2022
- minx="-65" miny="-180" maxx="75" maxy="180" />
2023
- </Layer>
2024
- <Layer queryable="0" opaque="0" cascaded="0">
2025
- <Name>F182010.v4c_web.cf_cvg.lzw.tif</Name>
2026
- <Title>F182010.v4c_web.cf_cvg.lzw.tif</Title>
2027
- <CRS>EPSG:4326</CRS>
2028
- <EX_GeographicBoundingBox>
2029
- <westBoundLongitude>-180</westBoundLongitude>
2030
- <eastBoundLongitude>180</eastBoundLongitude>
2031
- <southBoundLatitude>-65</southBoundLatitude>
2032
- <northBoundLatitude>75</northBoundLatitude>
2033
- </EX_GeographicBoundingBox>
2034
- <BoundingBox CRS="EPSG:4326"
2035
- minx="-65" miny="-180" maxx="75" maxy="180" />
2036
- </Layer>
2037
- <Layer queryable="0" opaque="0" cascaded="0">
2038
- <Name>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Name>
2039
- <Title>F182010.v4c_web.stable_lights.avg_vis.lzw.tif</Title>
2040
- <CRS>EPSG:4326</CRS>
2041
- <EX_GeographicBoundingBox>
2042
- <westBoundLongitude>-180</westBoundLongitude>
2043
- <eastBoundLongitude>180</eastBoundLongitude>
2044
- <southBoundLatitude>-65</southBoundLatitude>
2045
- <northBoundLatitude>75</northBoundLatitude>
2046
- </EX_GeographicBoundingBox>
2047
- <BoundingBox CRS="EPSG:4326"
2048
- minx="-65" miny="-180" maxx="75" maxy="180" />
2049
- </Layer>
2050
- </Layer>
2051
- </Capability>
2052
- </WMS_Capabilities>
2053
- */