query-dce759d4cd90ad5b13c502902d4390a7

rq turtle/ttl

Airports near Berlin (use of radius and filter) Airports within 100km of Berlin Airports within 100km of Berlin Aéroports dans un rayon de 100km autour de Berlin Airports within 100km of Berlin Airports within 100km of Berlin Luchthavens binnen 100 km van Berlijn Flygplatser inom 100 km från Berlin Airports within 100km of Berlin Airports within 100km of Berlin Airports within 100km of Berlin

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#>
#added before 2016-10

#defaultView:Map
SELECT ?place ?placeLabel ?location
WHERE
{
  # Berlin coordinates
  wd:Q64 wdt:P625 ?berlinLoc .
  SERVICE wikibase:around {
    ?place wdt:P625 ?location .
    bd:serviceParam wikibase:center ?berlinLoc .
    bd:serviceParam wikibase:radius "100" .
  } .
  # Is an airport
  FILTER EXISTS { ?place wdt:P31/wdt:P279* wd:Q1248784 } .
  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; v2("?berlinLoc") v3("?location"):::projected v1("?place"):::projected a1((" ")) c4(["wd:Q64"]):::iri c10(["100"]):::literal c3(["wd:Q1248784"]):::iri c7(["bd:serviceParam"]):::iri c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[[" "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P31"--> e0a1 e0a1 --"wdt:P279"--> e0c3 e0v1("?place"):::projected e0a1((" ")):::projected e0c3(["wd:Q1248784"]):::iri end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 f0 --> c2 f0 --> c3 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 c4 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v1 --"wdt:P625"--> v3 c7 --"wikibase:center"--> v2 c7 --"wikibase:radius"--> c10 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c7 --"wikibase:language"--> c13 end