2011-06-02 16:13:18 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2012-06-14 13:34:28 +00:00
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2013-11-06 15:51:33 -05:00
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
2011-06-02 16:13:18 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
2012-06-14 13:34:28 +00:00
|
|
|
?organization core:hasGeographicLocation ?geographicLocation .
|
|
|
|
?geographicLocation rdfs:label ?label .
|
2011-06-02 16:13:18 +00:00
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?position .
|
|
|
|
?position a core:Position .
|
|
|
|
?position core:relates ?organization .
|
|
|
|
?organization a foaf:Organization .
|
|
|
|
?organization obo:RO_0001025 ?geographicLocation .
|
2012-06-14 13:34:28 +00:00
|
|
|
?geographicLocation rdfs:label ?label .
|
2011-06-02 16:13:18 +00:00
|
|
|
}
|