query-8ad5d5726e4e3531ce6eeec3cde25b03

rq turtle/ttl

Places between Arc de Triomphe (Q64436) and Louvre Museum (Q19675)

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#>
#defaultView:Map
SELECT ?place ?placeLabel ?location WHERE {
  wd:Q64436 wdt:P625 ?Wloc .
  wd:Q19675 wdt:P625 ?Eloc .
  SERVICE wikibase:box {
      ?place wdt:P625 ?location .
      bd:serviceParam wikibase:cornerWest ?Wloc .
      bd:serviceParam wikibase:cornerEast ?Eloc .
    }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?Eloc") v1("?Wloc") v4("?location"):::projected v3("?place"):::projected c1(["wd:Q64436"]):::iri c5(["bd:serviceParam"]):::iri c10(["en"]):::literal c3(["wd:Q19675"]):::iri c1 --"wdt:P625"--> v1 c3 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#box"] style s1 stroke-width:4px; v3 --"wdt:P625"--> v4 c5 --"wikibase:cornerWest"--> v1 c5 --"wikibase:cornerEast"--> v2 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c5 --"wikibase:language"--> c10 end