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#>
|
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 {
|
|
|
|
PERSON_URI core:personInPosition ?position .
|
|
|
|
?position core:positionInOrganization ?organization .
|
|
|
|
?organization core:hasGeographicLocation ?geographicLocation .
|
2012-06-14 13:34:28 +00:00
|
|
|
?geographicLocation rdfs:label ?label .
|
2011-06-02 16:13:18 +00:00
|
|
|
}
|