
Imports

    >>> from tests.utils import resource_file
    >>> from owslib.etree import etree
    >>> from owslib.iso import MD_Metadata

Print testing some metadata elements

    >>> e=etree.parse(resource_file('iso_xml_srv.xml'))
    >>> x=MD_Metadata(e)
    >>> x.identification[0].title
    'Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States.'

    >>> x.identification[1].title
    'Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States. February 2013 Snapshot'

    >>> x.identification[1].abstract[0:40]
    'This dataset was created using the PRISM'

    >>> x.contact[0].name
    'Christopher Daley'

    >>> x.contact[0].email
    'daley@nacse.org'

    >>> x.identification[1].operations[0]['connectpoint'][0].url
    'http://cida.usgs.gov/thredds/dodsC/prism'
