VIVO-491 migrating hasGeographicLocation on Addresses
This commit is contained in:
parent
2704258977
commit
5b5bc34d1a
2 changed files with 8 additions and 0 deletions
|
@ -11,12 +11,15 @@ CONSTRUCT {
|
||||||
_:address v:region ?addressState .
|
_:address v:region ?addressState .
|
||||||
_:address v:postalCode ?addressPostalCode .
|
_:address v:postalCode ?addressPostalCode .
|
||||||
_:address v:country ?addressCountry .
|
_:address v:country ?addressCountry .
|
||||||
|
_:address <http://purl.obolibrary.org/obo/RO_0001025> ?location .
|
||||||
|
?location <http://purl.obolibrary.org/obo/RO_0001015> _:address .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?s vivo:mailingAddress ?address .
|
?s vivo:mailingAddress ?address .
|
||||||
OPTIONAL { ?address vivo:addressCity ?addressCity }
|
OPTIONAL { ?address vivo:addressCity ?addressCity }
|
||||||
OPTIONAL { ?address vivo:addressState ?addressState }
|
OPTIONAL { ?address vivo:addressState ?addressState }
|
||||||
OPTIONAL { ?address vivo:addressPostalCode ?addressPostalCode }
|
OPTIONAL { ?address vivo:addressPostalCode ?addressPostalCode }
|
||||||
OPTIONAL { ?address vivo:addressCountry ?addressCountry }
|
OPTIONAL { ?address vivo:addressCountry ?addressCountry }
|
||||||
|
OPTIONAL { ?address vivo:hasGeographicLocation ?location }
|
||||||
?s arg:ARG_2000028 ?vcard .
|
?s arg:ARG_2000028 ?vcard .
|
||||||
OPTIONAL {
|
OPTIONAL {
|
||||||
?address vivo:address1 ?address1 .
|
?address vivo:address1 ?address1 .
|
||||||
|
|
|
@ -17,6 +17,7 @@ CONSTRUCT {
|
||||||
?s vivo:faxNumber ?faxNumber .
|
?s vivo:faxNumber ?faxNumber .
|
||||||
?s vivo:mailingAddress ?address .
|
?s vivo:mailingAddress ?address .
|
||||||
?address ?addressP ?addressO .
|
?address ?addressP ?addressO .
|
||||||
|
?addressS ?addressQ ?address .
|
||||||
?s vivo:webpage ?webpage .
|
?s vivo:webpage ?webpage .
|
||||||
?webpage ?webpageP ?webpageO .
|
?webpage ?webpageP ?webpageO .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
|
@ -58,6 +59,10 @@ CONSTRUCT {
|
||||||
?s vivo:mailingAddress ?address .
|
?s vivo:mailingAddress ?address .
|
||||||
?address ?addressP ?addressO
|
?address ?addressP ?addressO
|
||||||
}
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:mailingAddress ?address .
|
||||||
|
?addressS ?addressQ ?address
|
||||||
|
}
|
||||||
UNION {
|
UNION {
|
||||||
?s vivo:webpage ?webpage
|
?s vivo:webpage ?webpage
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue