[owslib] 01/03: New upstream version 0.14.0

Johan Van de Wauw johanvdw-guest at moszumanska.debian.org
Thu Jan 12 21:42:51 UTC 2017


This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository owslib.

commit 76e127d61346aca9527e46fc37af3039004a3763
Author: Johan Van de Wauw <johan at vandewauw.be>
Date:   Thu Jan 12 21:15:10 2017 +0100

    New upstream version 0.14.0
---
 VERSION.txt                                     |    2 +-
 docs/en/index.rst                               |    2 +-
 owslib/__init__.py                              |    2 +-
 owslib/coverage/wcs100.py                       |    2 +
 owslib/coverage/wcs110.py                       |   15 +-
 owslib/csw.py                                   |    4 +-
 owslib/feature/__init__.py                      |   10 +-
 owslib/feature/wfs100.py                        |    2 +
 owslib/feature/wfs110.py                        |    4 +-
 owslib/feature/wfs200.py                        |    4 +-
 owslib/map/wms111.py                            |    2 +
 owslib/map/wms130.py                            |    2 +
 owslib/swe/observation/sos100.py                |    3 +
 owslib/swe/observation/sos200.py                |    3 +
 owslib/wmts.py                                  |    2 +
 owslib/wps.py                                   |    2 +
 tests/doctests/csw_pycsw.txt                    |    2 +
 tests/doctests/wcs_nsidc.txt                    |   67 +
 tests/doctests/wfs_MapServerWFSCapabilities.txt |    3 +
 tests/doctests/wms_geoserver_mass_gis.txt       |    3 +
 tests/doctests/wps_getcapabilities_usgs.txt     |    2 +
 tests/resources/wcs_nsidc.xml                   | 2059 +++++++++++++++++++++++
 22 files changed, 2185 insertions(+), 12 deletions(-)

diff --git a/VERSION.txt b/VERSION.txt
index 54d1a4f..a803cc2 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-0.13.0
+0.14.0
diff --git a/docs/en/index.rst b/docs/en/index.rst
index 8413c7b..902041a 100644
--- a/docs/en/index.rst
+++ b/docs/en/index.rst
@@ -382,7 +382,7 @@ Transaction: insert
 
 .. code-block:: python
 
-  >>> csw.transaction(ttype='insert', typename='gmd:MD_Metadata', record=open(file.xml).read())
+  >>> csw.transaction(ttype='insert', typename='gmd:MD_Metadata', record=open("file.xml").read())
 
 Transaction: update
 
diff --git a/owslib/__init__.py b/owslib/__init__.py
index 623145e..b7f5c8d 100644
--- a/owslib/__init__.py
+++ b/owslib/__init__.py
@@ -1,3 +1,3 @@
 from __future__ import (absolute_import, division, print_function)
 
-__version__ = '0.13.0'
+__version__ = '0.14.0'
diff --git a/owslib/coverage/wcs100.py b/owslib/coverage/wcs100.py
index d9ec1f4..3ee1412 100644
--- a/owslib/coverage/wcs100.py
+++ b/owslib/coverage/wcs100.py
@@ -57,6 +57,8 @@ class WebCoverageService_1_0_0(WCSBase):
             err_message = str(se.text).strip()  
             raise ServiceException(err_message, xml) 
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         #serviceIdentification metadata
         subelem=self._capabilities.find(ns('Service'))
         self.identification=ServiceIdentification(subelem)                               
diff --git a/owslib/coverage/wcs110.py b/owslib/coverage/wcs110.py
index 9e2591b..9b6477d 100644
--- a/owslib/coverage/wcs110.py
+++ b/owslib/coverage/wcs110.py
@@ -36,7 +36,7 @@ class Namespaces_1_1_0():
         return '{http://www.opengis.net/wcs/1.1/ows}'+tag
     
     def OWS(self, tag):
-        return '{http://www.opengis.net/ows/1.1}'+tag
+        return '{http://www.opengis.net/ows}'+tag
     
 
 class WebCoverageService_1_1_0(WCSBase):
@@ -74,6 +74,8 @@ class WebCoverageService_1_1_0(WCSBase):
 
         #build metadata objects:
         
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         #serviceIdentification metadata
         elem=self._capabilities.find(self.ns.WCS_OWS('ServiceIdentification'))
         if elem is None:
@@ -250,15 +252,20 @@ class ServiceIdentification(object):
         self.keywords = [f.text for f in elem.findall(nmSpc.OWS('Keywords') + '/' + nmSpc.OWS('Keyword'))]
         #self.link = elem.find(nmSpc.WCS('Service') + '/' + nmSpc.WCS('OnlineResource')).attrib.get('{http://www.w3.org/1999/xlink}href', '')
                
+        if elem.find(nmSpc.OWS('ServiceType')) is not None:
+            self.type = elem.find(nmSpc.OWS('ServiceType')).text
+        if elem.find(nmSpc.OWS('ServiceTypeVersion')) is not None:
+            self.version = elem.find(nmSpc.OWS('ServiceTypeVersion')).text
+
         if elem.find(nmSpc.WCS_OWS('Fees')) is not None:            
             self.fees=elem.find(nmSpc.WCS_OWS('Fees')).text
         else:
-            self.fees=None
-        
+            self.fees=elem.find(nmSpc.OWS('Fees')).text
+
         if  elem.find(nmSpc.WCS_OWS('AccessConstraints')) is not None:
             self.accessConstraints=elem.find(nmSpc.WCS_OWS('AccessConstraints')).text
         else:
-            self.accessConstraints=None       
+            self.accessConstraints=elem.find(nmSpc.OWS('AccessConstraints')).text
        
 class ServiceProvider(object):
     """ Abstraction for ServiceProvider metadata 
diff --git a/owslib/csw.py b/owslib/csw.py
index 4117963..1fa7da6 100644
--- a/owslib/csw.py
+++ b/owslib/csw.py
@@ -88,6 +88,8 @@ class CatalogueServiceWeb(object):
             self._invoke()
     
             if self.exceptionreport is None:
+                self.updateSequence = self._exml.getroot().attrib.get('updateSequence')
+
                 # ServiceIdentification
                 val = self._exml.find(util.nspath_eval('ows:ServiceIdentification', namespaces))
                 if val is not None:
@@ -445,7 +447,7 @@ class CatalogueServiceWeb(object):
                     node2 = etree.SubElement(node1, util.nspath_eval('csw:RecordProperty', namespaces))
                     etree.SubElement(node2, util.nspath_eval('csw:Name', namespaces)).text = propertyname
                     etree.SubElement(node2, util.nspath_eval('csw:Value', namespaces)).text = propertyvalue
-                    self._setconstraint(node1, qtype, propertyname, keywords, bbox, cql, identifier)
+                    self._setconstraint(node1, None, propertyname, keywords, bbox, cql, identifier)
 
         if ttype == 'delete':
             self._setconstraint(node1, None, propertyname, keywords, bbox, cql, identifier)
diff --git a/owslib/feature/__init__.py b/owslib/feature/__init__.py
index 6d93c00..8505088 100644
--- a/owslib/feature/__init__.py
+++ b/owslib/feature/__init__.py
@@ -128,13 +128,19 @@ class WebFeatureService_(object):
             request['query'] = str(filter)
         if typename:
             typename = [typename] if type(typename) == type("") else typename
-            request['typename'] = ','.join(typename)
+            if int(self.version.split('.')[0]) >= 2:
+                request['typenames'] = ','.join(typename)
+            else:
+                request['typename'] = ','.join(typename)
         if propertyname: 
             request['propertyname'] = ','.join(propertyname)
         if featureversion: 
             request['featureversion'] = str(featureversion)
         if maxfeatures: 
-            request['maxfeatures'] = str(maxfeatures)
+            if int(self.version.split('.')[0]) >= 2:
+                request['count'] = str(maxfeatures)
+            else:
+                request['maxfeatures'] = str(maxfeatures)
         if startindex:
             request['startindex'] = str(startindex)
         if storedQueryID: 
diff --git a/owslib/feature/wfs100.py b/owslib/feature/wfs100.py
index 851c414..43cfe96 100644
--- a/owslib/feature/wfs100.py
+++ b/owslib/feature/wfs100.py
@@ -105,6 +105,8 @@ class WebFeatureService_1_0_0(object):
     def _buildMetadata(self, parse_remote_metadata=False):
         '''set up capabilities metadata objects: '''
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         #serviceIdentification metadata
         serviceelem=self._capabilities.find(nspath('Service'))
         self.identification=ServiceIdentification(serviceelem, self.version)
diff --git a/owslib/feature/wfs110.py b/owslib/feature/wfs110.py
index 963ce11..b112d66 100644
--- a/owslib/feature/wfs110.py
+++ b/owslib/feature/wfs110.py
@@ -76,7 +76,7 @@ class WebFeatureService_1_1_0(WebFeatureService_):
         self.password = password
         self._capabilities = None
         self.owscommon = OwsCommon('1.0.0')
-        reader = WFSCapabilitiesReader(self.version)
+        reader = WFSCapabilitiesReader(self.version, username=username, password=password)
         if xml:
             self._capabilities = reader.readString(xml)
         else:
@@ -86,6 +86,8 @@ class WebFeatureService_1_1_0(WebFeatureService_):
     def _buildMetadata(self, parse_remote_metadata=False):
         '''set up capabilities metadata objects: '''
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # ServiceIdentification
         val = self._capabilities.find(util.nspath_eval('ows:ServiceIdentification', namespaces))
         self.identification=ServiceIdentification(val,self.owscommon.namespace)
diff --git a/owslib/feature/wfs200.py b/owslib/feature/wfs200.py
index 9112355..2fdc1a6 100644
--- a/owslib/feature/wfs200.py
+++ b/owslib/feature/wfs200.py
@@ -84,7 +84,7 @@ class WebFeatureService_2_0_0(WebFeatureService_):
         self.username = username
         self.password = password
         self._capabilities = None
-        reader = WFSCapabilitiesReader(self.version)
+        reader = WFSCapabilitiesReader(self.version, username=username, password=password)
         if xml:
             self._capabilities = reader.readString(xml)
         else:
@@ -94,6 +94,8 @@ class WebFeatureService_2_0_0(WebFeatureService_):
     def _buildMetadata(self, parse_remote_metadata=False):
         '''set up capabilities metadata objects: '''
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         #serviceIdentification metadata
         serviceidentelem=self._capabilities.find(nspath('ServiceIdentification'))
         self.identification=ServiceIdentification(serviceidentelem)
diff --git a/owslib/map/wms111.py b/owslib/map/wms111.py
index da7149b..71ac05f 100644
--- a/owslib/map/wms111.py
+++ b/owslib/map/wms111.py
@@ -94,6 +94,8 @@ class WebMapService_1_1_1(object):
     def _buildMetadata(self, parse_remote_metadata=False):
         """Set up capabilities metadata objects."""
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # serviceIdentification metadata
         serviceelem = self._capabilities.find('Service')
         self.identification = ServiceIdentification(serviceelem, self.version)
diff --git a/owslib/map/wms130.py b/owslib/map/wms130.py
index 01cc959..8329ced 100644
--- a/owslib/map/wms130.py
+++ b/owslib/map/wms130.py
@@ -87,6 +87,8 @@ class WebMapService_1_3_0(object):
     def _buildMetadata(self, parse_remote_metadata=False):
         '''set up capabilities metadata objects:'''
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # serviceIdentification metadata
         serviceelem = self._capabilities.find(nspath('Service',
                                               ns=WMS_NAMESPACE))
diff --git a/owslib/swe/observation/sos100.py b/owslib/swe/observation/sos100.py
index 21bbc4e..7920582 100644
--- a/owslib/swe/observation/sos100.py
+++ b/owslib/swe/observation/sos100.py
@@ -75,6 +75,9 @@ class SensorObservationService_1_0_0(object):
         """
             Set up capabilities metadata objects
         """
+
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # ows:ServiceIdentification metadata
         service_id_element = self._capabilities.find(nspath_eval('ows:ServiceIdentification', namespaces))
         self.identification = ows.ServiceIdentification(service_id_element)
diff --git a/owslib/swe/observation/sos200.py b/owslib/swe/observation/sos200.py
index 6c86a03..51621dd 100644
--- a/owslib/swe/observation/sos200.py
+++ b/owslib/swe/observation/sos200.py
@@ -80,6 +80,9 @@ class SensorObservationService_2_0_0(object):
         """
             Set up capabilities metadata objects
         """
+
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # ows:ServiceIdentification metadata
         service_id_element = self._capabilities.find(nspath_eval('ows:ServiceIdentification', namespaces))
         self.identification = ows.ServiceIdentification(service_id_element)
diff --git a/owslib/wmts.py b/owslib/wmts.py
index 2235137..716790a 100644
--- a/owslib/wmts.py
+++ b/owslib/wmts.py
@@ -191,6 +191,8 @@ class WebMapTileService(object):
     def _buildMetadata(self, parse_remote_metadata=False):
         ''' set up capabilities metadata objects '''
 
+        self.updateSequence = self._capabilities.attrib.get('updateSequence')
+
         # serviceIdentification metadata
         serviceident = self._capabilities.find(_SERVICE_IDENTIFICATION_TAG)
         self.identification = ServiceIdentification(serviceident)
diff --git a/owslib/wps.py b/owslib/wps.py
index 3b94234..849d340 100644
--- a/owslib/wps.py
+++ b/owslib/wps.py
@@ -309,6 +309,8 @@ class WebProcessingService(object):
         # use the WPS namespace defined in the document root
         wpsns = getNamespace(root)
 
+        self.updateSequence = root.attrib.get('updateSequence')
+
         # loop over children WITHOUT requiring a specific namespace
         for element in root:
 
diff --git a/tests/doctests/csw_pycsw.txt b/tests/doctests/csw_pycsw.txt
index 2614fb4..4dbc8ed 100644
--- a/tests/doctests/csw_pycsw.txt
+++ b/tests/doctests/csw_pycsw.txt
@@ -7,6 +7,8 @@ Imports
 Properties
 
     >>> c = cs('http://demo.pycsw.org/cite/csw')
+    >>> c.updateSequence is not None
+    True
     >>> c.version
     '2.0.2'
     
diff --git a/tests/doctests/wcs_nsidc.txt b/tests/doctests/wcs_nsidc.txt
new file mode 100644
index 0000000..7ad7c5b
--- /dev/null
+++ b/tests/doctests/wcs_nsidc.txt
@@ -0,0 +1,67 @@
+Web Coverage Service: #This is an example that shows how to the OWSLib wcs client to make requests from the NSIDC WCS.
+====================
+
+Version 1.1.0
+========
+
+Imports
+
+    >>> from __future__ import (absolute_import, division, print_function)
+    >>> from owslib.wcs import WebCoverageService
+    >>> from tests.utils import resource_file, scratch_file
+
+    >>> xml = open(resource_file('wcs_nsidc.xml')).read()
+    >>> wcs=WebCoverageService('http://nsidc.org/cgi-bin/atlas_north', version='1.1.0', xml=xml)
+    >>> wcs.url
+    'http://nsidc.org/cgi-bin/atlas_north'
+    >>> wcs.version
+    '1.1.0'
+    >>> wcs.identification.service
+    'WCS'
+    >>> wcs.identification.version
+    '1.1.0'
+    >>> wcs.identification.type
+    'OGC WCS'
+    >>> wcs.identification.title
+    'Atlas of the Cryosphere: Northern Hemisphere'
+    >>> wcs.identification.abstract
+    "The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, permafrost extent and classification, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate map servers: [...]
+    >>> wcs.identification.keywords
+    ['Arctic', 'Cryosphere', 'Earth Science', 'Ice Extent', 'Ice Sheets', 'Northern Hemisphere', 'Oceans', 'Polar', 'Sea Ice', 'Sea Ice Concentration', 'Snow/Ice', 'Snow Cover', 'Snow Melt', 'Snow Water Equivalent']
+    >>> wcs.identification.fees
+    'none'
+    >>> wcs.identification.accessConstraints
+    'none'
+
+#There is no 'ResponsibleParty' information in the NCEP/NAM capabilities document, so wcs.provider is empty.
+#but if there was you could do:
+#wcs.provider.url
+#and..
+#wcs.provider.contact.organization
+#wcs.provider.contact.email
+#wcs.provider.contact.address
+#etc... for region, city, postcode, country
+
+Print the ids of all layers (actually just the first 3):
+   >>> sorted(wcs.contents.keys())
+   ['greenland_accumulation', 'greenland_bedrock_elevation', 'greenland_elevation', 'greenland_ice_thickness', 'greenland_surface_melt', 'sea_ice_concentration_01', 'sea_ice_concentration_02', 'sea_ice_concentration_03', 'sea_ice_concentration_04', 'sea_ice_concentration_05', 'sea_ice_concentration_06', 'sea_ice_concentration_07', 'sea_ice_concentration_08', 'sea_ice_concentration_09', 'sea_ice_concentration_10', 'sea_ice_concentration_11', 'sea_ice_concentration_12', 'seasonal_snow_clas [...]
+
+
+#To further interrogate a single "coverage" get the coverageMetadata object
+#You can either do:
+    >>> cvg= wcs.contents['sea_ice_concentration_09'] #to get it from the dictonary
+
+#or even simpler you can do:
+    >>> cvg=wcs['sea_ice_concentration_09']
+
+    >>> cvg.boundingBoxWGS84
+    (-179.999998745864, 34.9037152643753, 178.959571606408, 53.7717181062498)
+
+    >>> len(cvg.timepositions)>1 #The old test kept failing as the response timepositions kept changign on the server
+    False
+
+    >>> [y for y in (x.getcode() for x in cvg.supportedCRS) if y]
+    ['EPSG:32661', 'EPSG:4326', 'EPSG:3408', 'EPSG:3410', 'EPSG:3411', 'EPSG:3413', 'EPSG:3571', 'EPSG:3572', 'EPSG:3573', 'EPSG:3574', 'EPSG:3575', 'EPSG:3576', 'EPSG:3973', 'EPSG:3975', 'EPSG:32624', 'EPSG:3857', 'EPSG:900913']
+
+    >>> cvg.supportedFormats
+    ['image/tiff']
diff --git a/tests/doctests/wfs_MapServerWFSCapabilities.txt b/tests/doctests/wfs_MapServerWFSCapabilities.txt
index e74050d..d766e19 100644
--- a/tests/doctests/wfs_MapServerWFSCapabilities.txt
+++ b/tests/doctests/wfs_MapServerWFSCapabilities.txt
@@ -13,6 +13,9 @@ Fake a request to a WFS Server using saved doc from.
 
 Test capabilities
 
+    >>> wfs.updateSequence is not None
+    True
+
 Service Identification:
 
     >>> wfs.identification.type
diff --git a/tests/doctests/wms_geoserver_mass_gis.txt b/tests/doctests/wms_geoserver_mass_gis.txt
index 863317d..262db2c 100644
--- a/tests/doctests/wms_geoserver_mass_gis.txt
+++ b/tests/doctests/wms_geoserver_mass_gis.txt
@@ -15,6 +15,9 @@ http://giswebservices.massgis.state.ma.us/geoserver/wms
 Test capabilities
 -----------------
 
+
+    >>> wms.updateSequence is not None
+    True
     >>> wms.identification.type
     'OGC:WMS'
     >>> wms.identification.version
diff --git a/tests/doctests/wps_getcapabilities_usgs.txt b/tests/doctests/wps_getcapabilities_usgs.txt
index 3757528..db5c5cf 100644
--- a/tests/doctests/wps_getcapabilities_usgs.txt
+++ b/tests/doctests/wps_getcapabilities_usgs.txt
@@ -17,6 +17,8 @@ Execute fake invocation of GetCapabilities operation by parsing cached response
     >>> wps.getcapabilities(xml=xml)
 
 Check WPS description
+    >>> wps.updateSequence is not None
+    True
     >>> wps.identification.type
     'WPS'
     >>> wps.identification.title
diff --git a/tests/resources/wcs_nsidc.xml b/tests/resources/wcs_nsidc.xml
new file mode 100644
index 0000000..69480c0
--- /dev/null
+++ b/tests/resources/wcs_nsidc.xml
@@ -0,0 +1,2059 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<Capabilities xmlns="http://www.opengis.net/wcs/1.1" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ogc="http://www.opengis.net/ogc" version="1.1.0">
+  <ows:ServiceIdentification>
+    <ows:Title>Atlas of the Cryosphere: Northern Hemisphere</ows:Title>
+    <ows:Abstract>The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, permafrost extent and classification, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate [...]
+    <ows:Keywords>
+      <ows:Keyword>Arctic</ows:Keyword>
+      <ows:Keyword>Cryosphere</ows:Keyword>
+      <ows:Keyword>Earth Science</ows:Keyword>
+      <ows:Keyword>Ice Extent</ows:Keyword>
+      <ows:Keyword>Ice Sheets</ows:Keyword>
+      <ows:Keyword>Northern Hemisphere</ows:Keyword>
+      <ows:Keyword>Oceans</ows:Keyword>
+      <ows:Keyword>Polar</ows:Keyword>
+      <ows:Keyword>Sea Ice</ows:Keyword>
+      <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      <ows:Keyword>Snow/Ice</ows:Keyword>
+      <ows:Keyword>Snow Cover</ows:Keyword>
+      <ows:Keyword>Snow Melt</ows:Keyword>
+      <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+    </ows:Keywords>
+    <ows:ServiceType codeSpace="OGC">OGC WCS</ows:ServiceType>
+    <ows:ServiceTypeVersion>1.1.0</ows:ServiceTypeVersion>
+    <ows:Fees>none</ows:Fees>
+    <ows:AccessConstraints>none</ows:AccessConstraints>
+  </ows:ServiceIdentification>
+  <ows:ServiceProvider>
+    <ows:ProviderName>National Snow and Ice Data Center</ows:ProviderName>
+    <ows:ProviderSite xlink:type="simple" xlink:href="http://nsidc.org"/>
+    <ows:ServiceContact>
+      <ows:IndividualName>NSIDC User Services</ows:IndividualName>
+      <ows:PositionName>User Services</ows:PositionName>
+      <ows:ContactInfo>
+        <ows:Phone>
+          <ows:Voice>+1 303.492.6199</ows:Voice>
+          <ows:Facsimile>+1 303.492.2468</ows:Facsimile>
+        </ows:Phone>
+        <ows:Address>
+          <ows:DeliveryPoint>CIRES, 449 UCB, University of Colorado</ows:DeliveryPoint>
+          <ows:City>Boulder</ows:City>
+          <ows:AdministrativeArea>CO</ows:AdministrativeArea>
+          <ows:PostalCode>80309-0449</ows:PostalCode>
+          <ows:Country>USA</ows:Country>
+          <ows:ElectronicMailAddress>nsidc at nsidc.org</ows:ElectronicMailAddress>
+        </ows:Address>
+        <ows:OnlineResource xlink:type="simple" xlink:href="http://nsidc.org"/>
+        <ows:HoursOfService>Our hours of operation are 9:00 A.M. to 5:00 P.M., U.S. Mountain Time, Monday through Friday. We are closed on most major United States holidays.</ows:HoursOfService>
+        <ows:ContactInstructions>None.</ows:ContactInstructions>
+      </ows:ContactInfo>
+      <ows:Role>resourceProvider</ows:Role>
+    </ows:ServiceContact>
+  </ows:ServiceProvider>
+  <ows:OperationsMetadata>
+    <ows:Operation name="GetCapabilities">
+      <ows:DCP>
+        <ows:HTTP>
+          <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/>
+        </ows:HTTP>
+      </ows:DCP>
+      <ows:Parameter name="service">
+        <ows:Value>WCS</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="version">
+        <ows:Value>1.1.0</ows:Value>
+      </ows:Parameter>
+    </ows:Operation>
+    <ows:Operation name="DescribeCoverage">
+      <ows:DCP>
+        <ows:HTTP>
+          <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/>
+        </ows:HTTP>
+      </ows:DCP>
+      <ows:Parameter name="service">
+        <ows:Value>WCS</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="version">
+        <ows:Value>1.1.0</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="identifiers">
+        <ows:Value>sea_ice_concentration_01</ows:Value>
+        <ows:Value>sea_ice_concentration_02</ows:Value>
+        <ows:Value>sea_ice_concentration_03</ows:Value>
+        <ows:Value>sea_ice_concentration_04</ows:Value>
+        <ows:Value>sea_ice_concentration_05</ows:Value>
+        <ows:Value>sea_ice_concentration_06</ows:Value>
+        <ows:Value>sea_ice_concentration_07</ows:Value>
+        <ows:Value>sea_ice_concentration_08</ows:Value>
+        <ows:Value>sea_ice_concentration_09</ows:Value>
+        <ows:Value>sea_ice_concentration_10</ows:Value>
+        <ows:Value>sea_ice_concentration_11</ows:Value>
+        <ows:Value>sea_ice_concentration_12</ows:Value>
+        <ows:Value>seasonal_snow_classification</ows:Value>
+        <ows:Value>snow_extent_01</ows:Value>
+        <ows:Value>snow_extent_02</ows:Value>
+        <ows:Value>snow_extent_03</ows:Value>
+        <ows:Value>snow_extent_04</ows:Value>
+        <ows:Value>snow_extent_05</ows:Value>
+        <ows:Value>snow_extent_06</ows:Value>
+        <ows:Value>snow_extent_07</ows:Value>
+        <ows:Value>snow_extent_08</ows:Value>
+        <ows:Value>snow_extent_09</ows:Value>
+        <ows:Value>snow_extent_10</ows:Value>
+        <ows:Value>snow_extent_11</ows:Value>
+        <ows:Value>snow_extent_12</ows:Value>
+        <ows:Value>snow_water_equivalent_01</ows:Value>
+        <ows:Value>snow_water_equivalent_02</ows:Value>
+        <ows:Value>snow_water_equivalent_03</ows:Value>
+        <ows:Value>snow_water_equivalent_04</ows:Value>
+        <ows:Value>snow_water_equivalent_05</ows:Value>
+        <ows:Value>snow_water_equivalent_06</ows:Value>
+        <ows:Value>snow_water_equivalent_07</ows:Value>
+        <ows:Value>snow_water_equivalent_08</ows:Value>
+        <ows:Value>snow_water_equivalent_09</ows:Value>
+        <ows:Value>snow_water_equivalent_10</ows:Value>
+        <ows:Value>snow_water_equivalent_11</ows:Value>
+        <ows:Value>snow_water_equivalent_12</ows:Value>
+        <ows:Value>greenland_surface_melt</ows:Value>
+        <ows:Value>greenland_accumulation</ows:Value>
+        <ows:Value>greenland_bedrock_elevation</ows:Value>
+        <ows:Value>greenland_ice_thickness</ows:Value>
+        <ows:Value>greenland_elevation</ows:Value>
+      </ows:Parameter>
+    </ows:Operation>
+    <ows:Operation name="GetCoverage">
+      <ows:DCP>
+        <ows:HTTP>
+          <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/>
+        </ows:HTTP>
+      </ows:DCP>
+      <ows:Parameter name="service">
+        <ows:Value>WCS</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="version">
+        <ows:Value>1.1.0</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="Identifier">
+        <ows:Value>sea_ice_concentration_01</ows:Value>
+        <ows:Value>sea_ice_concentration_02</ows:Value>
+        <ows:Value>sea_ice_concentration_03</ows:Value>
+        <ows:Value>sea_ice_concentration_04</ows:Value>
+        <ows:Value>sea_ice_concentration_05</ows:Value>
+        <ows:Value>sea_ice_concentration_06</ows:Value>
+        <ows:Value>sea_ice_concentration_07</ows:Value>
+        <ows:Value>sea_ice_concentration_08</ows:Value>
+        <ows:Value>sea_ice_concentration_09</ows:Value>
+        <ows:Value>sea_ice_concentration_10</ows:Value>
+        <ows:Value>sea_ice_concentration_11</ows:Value>
+        <ows:Value>sea_ice_concentration_12</ows:Value>
+        <ows:Value>seasonal_snow_classification</ows:Value>
+        <ows:Value>snow_extent_01</ows:Value>
+        <ows:Value>snow_extent_02</ows:Value>
+        <ows:Value>snow_extent_03</ows:Value>
+        <ows:Value>snow_extent_04</ows:Value>
+        <ows:Value>snow_extent_05</ows:Value>
+        <ows:Value>snow_extent_06</ows:Value>
+        <ows:Value>snow_extent_07</ows:Value>
+        <ows:Value>snow_extent_08</ows:Value>
+        <ows:Value>snow_extent_09</ows:Value>
+        <ows:Value>snow_extent_10</ows:Value>
+        <ows:Value>snow_extent_11</ows:Value>
+        <ows:Value>snow_extent_12</ows:Value>
+        <ows:Value>snow_water_equivalent_01</ows:Value>
+        <ows:Value>snow_water_equivalent_02</ows:Value>
+        <ows:Value>snow_water_equivalent_03</ows:Value>
+        <ows:Value>snow_water_equivalent_04</ows:Value>
+        <ows:Value>snow_water_equivalent_05</ows:Value>
+        <ows:Value>snow_water_equivalent_06</ows:Value>
+        <ows:Value>snow_water_equivalent_07</ows:Value>
+        <ows:Value>snow_water_equivalent_08</ows:Value>
+        <ows:Value>snow_water_equivalent_09</ows:Value>
+        <ows:Value>snow_water_equivalent_10</ows:Value>
+        <ows:Value>snow_water_equivalent_11</ows:Value>
+        <ows:Value>snow_water_equivalent_12</ows:Value>
+        <ows:Value>greenland_surface_melt</ows:Value>
+        <ows:Value>greenland_accumulation</ows:Value>
+        <ows:Value>greenland_bedrock_elevation</ows:Value>
+        <ows:Value>greenland_ice_thickness</ows:Value>
+        <ows:Value>greenland_elevation</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="InterpolationType">
+        <ows:Value>NEAREST_NEIGHBOUR</ows:Value>
+        <ows:Value>BILINEAR</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="format">
+        <ows:Value>image/png</ows:Value>
+        <ows:Value>image/tiff</ows:Value>
+        <ows:Value>image/gif</ows:Value>
+        <ows:Value>image/png; mode=24bit</ows:Value>
+        <ows:Value>image/jpeg</ows:Value>
+        <ows:Value>image/vnd.wap.wbmp</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="store">
+        <ows:Value>false</ows:Value>
+      </ows:Parameter>
+      <ows:Parameter name="GridBaseCRS">
+        <ows:Value>urn:ogc:def:crs:epsg::4326</ows:Value>
+      </ows:Parameter>
+    </ows:Operation>
+  </ows:OperationsMetadata>
+  <Contents>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_01</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_02</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_03</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_04</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_05</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_06</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_07</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_08</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_09</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_10</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_11</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and I [...]
+      <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow an [...]
+      <Identifier>sea_ice_concentration_12</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Arctic Ocean</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Oceans</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Sea Ice</ows:Keyword>
+        <ows:Keyword>Sea Ice Concentration</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>316 332</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner>
+        <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner>
+        <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Liston, G.E., and M. Sturm. 1998. Global seasonal snow classification system. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/arcss045.html. 31 August 2006. Background: Based on the physical properties of the snow (depth, density, thermal conductivity, number of layers, degree of wetting, etc.), the world's seasonal snow covers are divided into six classes, plus classes for water and ice fields. Each class is defined [...]
+      <ows:Abstract>Liston, G.E., and M. Sturm. 1998. Global seasonal snow classification system. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/arcss045.html. 31 August 2006. Background: Based on the physical properties of the snow (depth, density, thermal conductivity, number of layers, degree of wetting, etc.), the world's seasonal snow covers are divided into six classes, plus classes for water and ice fields. Each class is defi [...]
+      <Identifier>seasonal_snow_classification</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Classification</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_01</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_02</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_03</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_04</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_05</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_06</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_07</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_08</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_09</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_10</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_11</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Gr [...]
+      <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE [...]
+      <Identifier>snow_extent_12</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_01</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_02</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_03</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_04</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_05</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_06</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_07</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_08</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_09</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_10</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_11</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defe [...]
+      <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and D [...]
+      <Identifier>snow_water_equivalent_12</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Arctic</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Northern Hemisphere</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Cover</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>1012 1012</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner>
+        <ows:UpperCorner>14700000 14700000</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner>
+        <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Abdalati, W. 2007. Greenland ice sheet melt characteristics derived from passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital Media. Available at http://nsidc.org/data/nsidc-0218.html. 17 July 2007. Background: The ice sheet melt extent is a daily (or every-other-day, prior to August, 1987) estimate of the spatial extent of wet snow on the Greenland ice sheet derived from passive microwave satellite brightness temperature characterist [...]
+      <ows:Abstract>Abdalati, W. 2007. Greenland ice sheet melt characteristics derived from passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital Media. Available at http://nsidc.org/data/nsidc-0218.html. 17 July 2007. Background: The ice sheet melt extent is a daily (or every-other-day, prior to August, 1987) estimate of the spatial extent of wet snow on the Greenland ice sheet derived from passive microwave satellite brightness temperature character [...]
+      <Identifier>greenland_surface_melt</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Greenland</ows:Keyword>
+        <ows:Keyword>Ice Sheets</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Melt</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>114 118</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-837081.418 -1130786.327</ows:LowerCorner>
+        <ows:UpperCorner>2031324.049 1838687.117</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.724371524912 65.0917471938267</ows:LowerCorner>
+        <ows:UpperCorner>179.267576918496 82.2840082267087</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Bales, R.C., J.R. McConnell, E. Mosley-Thompson, and G. Lamorey. 2001. Accumulation map for the Greenland Ice Sheet: 1971-1990. Geophysical Research Letters. 28(15): 2967-2970. doi:10.1029/2000GL012052. Available at http://zero.eng.ucmerced.edu/rcbales/PARCA/. 24 October 2006. Background: An updated accumulation map for the Greenland Ice Sheet for the period 1971-1990, based on kriging of accurate in situ point estimates developed during the past decade at over 40 points [...]
+      <ows:Abstract>Bales, R.C., J.R. McConnell, E. Mosley-Thompson, and G. Lamorey. 2001. Accumulation map for the Greenland Ice Sheet: 1971-1990. Geophysical Research Letters. 28(15): 2967-2970. doi:10.1029/2000GL012052. Available at http://zero.eng.ucmerced.edu/rcbales/PARCA/. 24 October 2006. Background: An updated accumulation map for the Greenland Ice Sheet for the period 1971-1990, based on kriging of accurate in situ point estimates developed during the past decade at over 40 poi [...]
+      <Identifier>greenland_accumulation</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Greenland</ows:Keyword>
+        <ows:Keyword>Ice Sheets</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+        <ows:Keyword>Snow Accumulation</ows:Keyword>
+        <ows:Keyword>Snow Water Equivalent</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>573 593</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-837081.418 -1130786.327</ows:LowerCorner>
+        <ows:UpperCorner>2031324.049 1838687.117</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.836596092188 65.1664483438673</ows:LowerCorner>
+        <ows:UpperCorner>179.269613064936 82.4667598139105</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set f [...]
+      <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data se [...]
+      <Identifier>greenland_bedrock_elevation</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Bedrock Elevation</ows:Keyword>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Greenland</ows:Keyword>
+        <ows:Keyword>Ice Sheets</ows:Keyword>
+        <ows:Keyword>Ice Sheet Elevation</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>599 638</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner>
+        <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner>
+        <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set f [...]
+      <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data se [...]
+      <Identifier>greenland_ice_thickness</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Greenland</ows:Keyword>
+        <ows:Keyword>Ice Sheets</ows:Keyword>
+        <ows:Keyword>Ice Sheet Thickness</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>599 638</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner>
+        <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner>
+        <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+    <CoverageSummary>
+      <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set f [...]
+      <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data se [...]
+      <Identifier>greenland_elevation</Identifier>
+      <ows:Keywords>
+        <ows:Keyword>Cryosphere</ows:Keyword>
+        <ows:Keyword>Earth Science</ows:Keyword>
+        <ows:Keyword>Greenland</ows:Keyword>
+        <ows:Keyword>Ice Sheets</ows:Keyword>
+        <ows:Keyword>Ice Sheet Elevation</ows:Keyword>
+        <ows:Keyword>Polar</ows:Keyword>
+      </ows:Keywords>
+      <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2">
+        <ows:LowerCorner>0 0</ows:LowerCorner>
+        <ows:UpperCorner>599 638</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2">
+        <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner>
+        <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner>
+      </ows:BoundingBox>
+      <ows:WGS84BoundingBox dimensions="2">
+        <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner>
+        <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner>
+      </ows:WGS84BoundingBox>
+      <SupportedFormat>image/tiff</SupportedFormat>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
+      <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS>
+    </CoverageSummary>
+  </Contents>
+</Capabilities>

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/owslib.git



More information about the Pkg-grass-devel mailing list