query-f08ed5ffb7b27f9844e7ae2092d1770d
Map of libraries from the Canary Islands
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
SELECT DISTINCT ?biblioteca ?bibliotecaLabel ?coordenadas WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?biblioteca (wdt:P31/(wdt:P279*)) wd:Q7075;
wdt:P17 wd:Q29;
wdt:P131 ?municipio.
?municipio wdt:P131* wd:Q5813
OPTIONAL { ?biblioteca wdt:P625 ?coordenadas. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?biblioteca"):::projected
v3("?coordenadas"):::projected
v2("?municipio")
a1((" "))
c7(["wd:Q7075"]):::iri
c2(["bd:serviceParam"]):::iri
c9(["wd:Q29"]):::iri
c11(["wd:Q5813"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c7
v1 --"wdt:P17"--> c9
v1 --"wdt:P131"--> v2
v2 --"wdt:P131"--> c11
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v3
end