query-a261254f348f4bb3e30694e3301fd3c7

rq turtle/ttl

Airports in Belgium Airports in Belgium Aéroports de Belgique Օդանավակայաններ Բելգիայում Airports in Belgium Luchthavens in België Flygplatser i Belgien Airports in Belgium Airports in Belgium Airports in Belgium

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#>
#List of airports in Belgium
#defaultView:Map
SELECT DISTINCT ?airport ?airportLabel ?coor
WHERE {
  ?airport wdt:P31 wd:Q1248784 ;
          ?range wd:Q31;
          wdt:P625 ?coor.
  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("?airport"):::projected v3("?coor"):::projected v2("?range") c2(["wd:Q1248784"]):::iri c6(["bd:serviceParam"]):::iri c3(["wd:Q31"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 -->v2--> c3 v1 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end