query-42772f88174d359de83576a0367c01c7
TODO
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#>
SELECT DISTINCT ?item ?itemLabel WHERE
{
wd:Q62130029 wdt:P625 ?targetLoc. # hack green bunker
SERVICE wikibase:around {
?item wdt:P625 ?location.
bd:serviceParam wikibase:center ?targetLoc.
bd:serviceParam wikibase:radius "0.3".
bd:serviceParam wikibase:distance ?dist.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
- https://www.wikidata.org/wiki/Wikidata:Report_a_technical_problem/Archive/2024/04
- https://www.wikidata.org/wiki/Wikidata:Report_a_technical_problem/WDQS_and_Search
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?dist")
v2("?item"):::projected
v3("?location")
v1("?targetLoc")
c4(["bd:serviceParam"]):::iri
c7(["0.3"]):::literal
c1(["wd:Q62130029"]):::iri
c11(["en"]):::literal
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
c4 --"wikibase:distance"--> v4
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c4 --"wikibase:language"--> c11
end