-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISO: subclass SV_ServiceIdentification from MD_DataIdentification (#872)
* ISO: subclass SV_ServiceIdentification from MD_DataIdentification * fix tests
- Loading branch information
1 parent
306ceed
commit 700751a
Showing
2 changed files
with
16 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Imports | |
|
||
>>> from tests.utils import resource_file | ||
>>> from owslib.etree import etree | ||
>>> from owslib.iso import MD_Metadata | ||
>>> from owslib.iso import MD_Metadata | ||
|
||
Print testing some metadata elements | ||
|
||
|
@@ -15,14 +15,14 @@ Print testing some metadata elements | |
>>> 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.identification[1].contact.name | ||
'Christopher Daley' | ||
>>> x.identification[1].contact.email | ||
'[email protected]' | ||
|
||
>>> x.identification[1].operations[0]['connectpoint'][0].url | ||
'http://cida.usgs.gov/thredds/dodsC/prism' | ||
>>> x.identification[1].abstract[0:40] | ||
'This dataset was created using the PRISM' | ||
|
||
>>> x.contact[0].name | ||
'Christopher Daley' | ||
|
||
>>> x.contact[0].email | ||
'[email protected]' | ||
|
||
>>> x.identification[1].operations[0]['connectpoint'][0].url | ||
'http://cida.usgs.gov/thredds/dodsC/prism' |