query-099ac3aec3ef836451397b45fd33828d

rq turtle/ttl

Mapa amb la localització d'esglésies a una comarca determinada

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#>
#defaultView:Map
SELECT ?item ?itemLabel ?coordenades ?municipi ?municipiLabel ?imatge WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item (wdt:P31/(wdt:P279*)) wd:Q16970;
    wdt:P131 ?municipi.
  ?municipi wdt:P131 ?comarca.
  OPTIONAL { ?item wdt:P625 ?coordenades. }
  OPTIONAL { ?item wdt:P18 ?imatge. }
  FILTER(?comarca = wd:Q12793)    # select comarca (or second level of P131) #

}
LIMIT 400

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?comarca") v4("?coordenades"):::projected v5("?imatge"):::projected v2("?item"):::projected v3("?municipi"):::projected a1((" ")) c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal c8(["wd:Q16970"]):::iri f0[["?comarca = 'wd:Q12793'"]] f0 --> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c8 v2 --"wdt:P131"--> v3 v3 --"wdt:P131"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end