#WCS response decoder. #Decodes response from a WCS (either a Coverages XML document or a Multipart MIME) and extracts the urls of the coverage data. #Copyright (c) 2007 STFC #Author: Dominic Lowe, STFC #contact email: d.lowe@rl.ac.uk # # Multipart MIME decoding based on http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/86676 #example: used in conjunction with ows lib wcs: #from owslib import wcsdecoder #u=wcs.getcoverage(identifier=['TuMYrRQ4'], timeSequence=['2792-06-01T00:00:00.0'], bbox=(-112,36,-106,41),format='application/netcdf', store='true') #decoder=wcsdecoder.WCSDecoder(u) #decoder.getCoverages() from __future__ import (absolute_import, division, print_function) import os from owslib.etree import etree import email import errno class WCSDecoder(object): def __init__(self, u): ''' initiate with a urllib url object.''' self.u=u self._getType() def _getType(self): ''' determine whether it is a Multipart Mime or a Coverages XML file''' #what's the best way to test this? #for now read start of file tempu=self.u if tempu.readline()[:14] == '