query-956da591a344515846e83e37f8b32ef5
Hrodźišća
Use at
- https://query.wikidata.org/sparql
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#>
#defaultView:Map
SELECT ?item ?itemLabel ?coordinate WHERE {
wd:Q93286 wdt:P625 ?Center.
?item wdt:P31 wd:Q88598 . # ist ein Burgwall
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. })
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?Center")
v3("?coordinate"):::projected
v2("?item"):::projected
c1(["wd:Q93286"]):::iri
c6(["bd:serviceParam"]):::iri
c9(["25"]):::literal
c4(["wd:Q88598"]):::iri
c12(["hsb,de,#91;AUTO_LANGUAGE#93;"]):::literal
c1 --"wdt:P625"--> v1
v2 --"wdt:P31"--> c4
subgraph s1["http://wikiba.se/ontology#around"]
style s1 stroke-width:4px;
v2 --"wdt:P625"--> v3
c6 --"wikibase:center"--> v1
c6 --"wikibase:radius"--> c9
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c6 --"wikibase:language"--> c12
end