query-61868abaf96907d29612aee09aa4b3af
Airport 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#>
#Astroport map of Spain
#Airports map of Spain
#Usuario:Galopax/Pintando_mapas_2
#User:Galopax/Painting maps (WD)
#added 2020-09-12
#defaultView:Map
SELECT ?nombre ?geo ?qid ?website WHERE {
?qid wdt:P31 wd:Q1248784; #Airport
?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:Q1248784"]):::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