query-52018aa425b79bab582994e9e58e6912
Aéroport à l'intérieur de 200 km de la Rivière L'Assomption (Q1570842)
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 ?place ?placeLabel ?location
WHERE
{
wd:Q1570842 wdt:P625 ?centerLoc . #Centre de la carte = rivière L'Assomption
SERVICE wikibase:around {
?place wdt:P625 ?location .
bd:serviceParam wikibase:center ?centerLoc .
bd:serviceParam wikibase:radius "200" .
}
# Is an airport
?place wdt:P31 wd:Q1248784 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?centerLoc")
v3("?location"):::projected
v2("?place"):::projected
c7(["200"]):::literal
c4(["bd:serviceParam"]):::iri
c9(["wd:Q1248784"]):::iri
c1(["wd:Q1570842"]):::iri
c12(["fr"]):::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
end
v2 --"wdt:P31"--> c9
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c4 --"wikibase:language"--> c12
end