query-1524e1bf9beabc5f7173b2e91a6c5557
Mapa d'ESPs a Catalunya SELECT ?item ?itemLabel ?coor WITH { SELECT ?item WHERE {
VALUES ?comarques { wd:Q5705 }
?item wdt:P131* ?comarques;
} } AS %1
WHERE
{
INCLUDE %1
VALUES ?que { wd:Q3055118 } #ESP
?item wdt:P31 ?que
OPTIONAL {?item wdt:P625 ?coor}
?item wdt:P4335 ?idescat.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
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#>
# Mapa d'ESPs a Catalunya
SELECT ?item ?itemLabel ?coor
WHERE
{
{
SELECT ?item
WHERE {
VALUES ?comarques { wd:Q5705 }
?item wdt:P131* ?comarques;
} }
VALUES ?que { wd:Q3055118 } #ESP
?item wdt:P31 ?que
OPTIONAL {?item wdt:P625 ?coor}
?item wdt:P4335 ?idescat.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?comarques")
v4("?coor"):::projected
v5("?idescat")
v2("?item"):::projected
v3("?que")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?comarques/]
bind0-->v1
bind00(["wd:Q5705"])
bind00 --> bind0
v2 --"wdt:P131"--> v1
bind1[/VALUES ?que/]
bind1-->v3
bind10(["wd:Q3055118"])
bind10 --> bind1
v2 --"wdt:P31"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v4
end
v2 --"wdt:P4335"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end