query-19fced133dadc7fc2aa1e2416fc90af5
Theklan(Q243)Eiffel Tower
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 ?item ?itemLabel ?distance
WHERE
{
wd:Q243 wdt:P625 ?eiffeltower_location . # Location of the Eiffel Tower
SERVICE wikibase:around
{
?item wdt:P625 ?location .
bd:serviceParam wikibase:center ?eiffeltower_location .
bd:serviceParam wikibase:radius "1" .
bd:serviceParam wikibase:distance ?distance .
}
FILTER (?distance = 1.0)
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;
v1("?distance"):::projected
v2("?eiffeltower_location")
v3("?item"):::projected
v4("?location")
c8(["1"]):::literal
c5(["bd:serviceParam"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q243"]):::iri
f0[["?distance = '1.0^^xsd:decimal'"]]
f0 --> v1
c2 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#around"]
style s1 stroke-width:4px;
v3 --"wdt:P625"--> v4
c5 --"wikibase:center"--> v2
c5 --"wikibase:radius"--> c8
c5 --"wikibase:distance"--> v1
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c5 --"wikibase:language"--> c12
end