query-cd11cda2286d1284984e1ecc5a9f3450

rq turtle/ttl

autour d'un endroitAutour de la localisation d'un événement:

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#>
# Autour d'un élément avec coordonnées géographiques
#defaultView:Map
SELECT ?item ?itemLabel ?coord WHERE {
 wd:Q64507299 wdt:P625 ?ItemLoc .
 SERVICE wikibase:around {
    ?item wdt:P625 ?location .
    bd:serviceParam wikibase:center ?ItemLoc .
# À 1 km de rayon autour de l'entrée
    bd:serviceParam wikibase:radius "1" . 
  } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?item wdt:P625 ?coord. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?ItemLoc") v4("?coord"):::projected v2("?item"):::projected v3("?location") c7(["1"]):::literal c4(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1(["wd:Q64507299"]):::iri 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 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c10 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v4 end