query-783db54e7e619fa8234e7b4674334dc1
Museum map of Spain
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#Mapa de museo de EspaƱa
#Museum map of Spain
#Usuario:Galopax/Pintando_mapas_2
#User:Galopax/Painting maps (WD)
#added 2021-09-23
#defaultView:Map
SELECT ?nombre ?geo ?qid ?website WHERE {
?qid wdt:P31 wd:Q33506; #Museum
?range wd:Q29; #Spain
wdt:P625 ?geo;
rdfs:label ?nombre.
FILTER((LANG(?nombre)) = "es")
OPTIONAL { ?nombre wdt:P856 ?website. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?geo"):::projected
v1("?nombre"):::projected
v2("?qid"):::projected
v3("?range")
v5("?website"):::projected
c3(["wd:Q33506"]):::iri
c4(["wd:Q29"]):::iri
f0[["?nombre = 'es'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 -->v3--> c4
v2 --"wdt:P625"--> v4
v2 --"rdfs:label"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P856".-> v5
end