query-ac07de8d34d76e584156650172e4839d
Dataverse
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map{"hide":"?geoLocs", "layer":"?Dataverse"}
#title: Map of Institutions using Dataverse
SELECT ?Institution ?InstitutionLabel (MIN(?geoLoc) AS ?geoLocs)
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
wd:Q5227499 wdt:P1535 ?Institution .
OPTIONAL { ?Institution wdt:P625 ?geoLoc .}
OPTIONAL { ?Institution(wdt:P159/wdt:P625) ?geoHead. }
BIND(COALESCE(?geoLoc, ?geoHead) AS ?geoLoc)
}
GROUP BY ?Institution ?InstitutionLabel