query-ae728b7742da34f0da994b0d65c87719

rq turtle/ttl

Objects around

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 ?place
WHERE
{
  # Berlin coordinates
  wd:Q7150840 wdt:P625 ?berlinLoc . 
  SERVICE wikibase:around { 
      ?place wdt:P625 ?location . 
      bd:serviceParam wikibase:center ?berlinLoc . 
      bd:serviceParam wikibase:radius "30" . 
  } 
  # Is an airport
  ?place wdt:P31/wdt:P279* wd:Q1248784 .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?berlinLoc") v3("?location") v2("?place"):::projected a1((" ")) c4(["bd:serviceParam"]):::iri c10(["wd:Q1248784"]):::iri c7(["30"]):::literal c1(["wd:Q7150840"]):::iri c1 --"wdt:P625"--> v1 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c4 --"wikibase:center"--> v1 c4 --"wikibase:radius"--> c7 end v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c10