Merge branch 'dev-isf' of https://github.com/vivo-project/VIVO into dev-isf

This commit is contained in:
tworrall 2013-09-11 15:50:41 -04:00
commit 7fe3d8ea70
7 changed files with 66 additions and 21 deletions

View file

@ -0,0 +1,11 @@
PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
CONSTRUCT {
?s vivo:orcidId ?orcidURI .
?orcidURI a owl:Thing .
} WHERE {
?s vivo:orcidId ?orcidString
FILTER(isLiteral(?orcidString))
BIND(IRI(concat("http://orcid.org/", str(?orcidString))) AS ?orcidURI)
}

View file

@ -9,12 +9,6 @@ CONSTRUCT {
_:primaryTelephone a v:Voice .
_:primaryTelephone a v:Work .
_:primaryTelephone v:telephone ?primaryPhoneNumber .
_:name v:hasTelephone _:fax .
_:fax a v:Telephone .
_:fax a v:Fax.
_:fax v:telephone ?faxNumber .
_:name v:hasAddress _:address .
_:address v:streetAddress ?streetAddress .
} WHERE {
?s arg:ARG_2000028 ?vcard .
?s vivo:primaryPhoneNumber ?primaryPhoneNumber

View file

@ -8,8 +8,6 @@ CONSTRUCT {
_:fax a v:Telephone .
_:fax a v:Fax.
_:fax v:telephone ?faxNumber .
_:name v:hasAddress _:address .
_:address v:streetAddress ?streetAddress .
} WHERE {
?s arg:ARG_2000028 ?vcard .
?s vivo:faxNumber ?faxNumber

View file

@ -0,0 +1,9 @@
PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
CONSTRUCT {
?s vivo:orcidId ?orcidString .
} WHERE {
?s vivo:orcidId ?orcidString
FILTER(isLiteral(?orcidString))
}