query-53779f32961a35c9bfa4a2477cba59d1

rq turtle/ttl

Instance of archives with coordinates

Use at

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#>
SELECT ?institutionLabel ?coords ?addressLabel 

WHERE { ?institution wdt:P31 wd:Q166118; #institutions that are an instance of archives

           wdt:P6375 ?address. #address of institution

  ?institution wdt:P625 ?coords. #institution coordinates

SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?address") v3("?coords"):::projected v1("?institution") c2(["wd:Q166118"]):::iri c6(["bd:serviceParam"]):::iri c8(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P6375"--> v2 v1 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end