query-667d7ef38889ca1ba3117f37db975210

rq turtle/ttl

wjeski wokoło ...

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#>
#---------------------------------------------------------------------------------------
# wjeski wokoło dateho městna
#---------------------------------------------------------------------------------------
#defaultView:Map
SELECT ?item ?itemLabel ?itemDescription ?coordinate WHERE {
  wd:Q160661 wdt:P625 ?Center.
  ?item wdt:P31 wd:Q532 .  # ist ein Dorf
  SERVICE wikibase:around {
    ?item wdt:P625 ?coordinate.
    bd:serviceParam wikibase:center ?Center.
    bd:serviceParam wikibase:radius "25". # 25 Kilometer around
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "hsb,de,[AUTO_LANGUAGE]". }
  #FILTER(EXISTS { ?place (wdt:P31/wdt:P279*) wd:Q1248784. })
}
ORDER BY ?item

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?Center") v3("?coordinate"):::projected v1("?item"):::projected c4(["wd:Q532"]):::iri c6(["bd:serviceParam"]):::iri c9(["25"]):::literal c12(["hsb,de,#91;AUTO_LANGUAGE#93;"]):::literal c1(["wd:Q160661"]):::iri c1 --"wdt:P625"--> v2 v1 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v1 --"wdt:P625"--> v3 c6 --"wikibase:center"--> v2 c6 --"wikibase:radius"--> c9 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c6 --"wikibase:language"--> c12 end