query-47a7d83cc808a9537f54422f8ca38a27

rq turtle/ttl

Todos los elementos en una localizaciĆ³n administrativa. Ojo que es probable tenga que ser refinada. (P276)location o (P131)located in the administrative territorial entity Que usen

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 DISTINCT ?municipio ?municipioLabel ?municipioDescription ?coordenadas ?imagen WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
  { ?municipio (wdt:P131*) wd:Q5277. }
  UNION
  { ?municipio (wdt:P276*) wd:Q5277. }
  OPTIONAL { ?municipio wdt:P625 ?coordenadas. }
  OPTIONAL { ?municipio wdt:P18 ?imagen. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coordenadas"):::projected v3("?imagen"):::projected v1("?municipio"):::projected c2(["bd:serviceParam"]):::iri c6(["wd:Q5277"]):::iri c4(["es"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P276"--> c6 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> c6 end union0r <== or ==> union0l end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end