query-696463abc81be09a337fce9060a82982

rq turtle/ttl

Elementos geolocalizados alrededor de Alamedilla (Q1631944)

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#>
SELECT ?item ?itemLabel ?distance ?location WHERE {
  wd:Q1631944 wdt:P625 ?destino.
  SERVICE wikibase:around {
    ?item wdt:P625 ?location.
    bd:serviceParam wikibase:center ?destino;
      wikibase:radius "20";
      wikibase:distance ?distance.
  }
  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("?destino") v4("?distance"):::projected v2("?item"):::projected v3("?location"):::projected c4(["bd:serviceParam"]):::iri c1(["wd:Q1631944"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal c7(["20"]):::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