query-75a9e3ea383f2d363e551b59fda6a0a2
Narrative locations in travel books on a map (and by layer)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?book ?bookLabel ?place ?placeLabel ?coord ?layer WHERE {
?book wdt:P840 ?place ; wdt:P136 wd:Q1164267 . #books with "narrative location" and which are "travel books"
?place wdt:P625 ?coord . #take coordinates from the location
?book rdfs:label ?layer . #take the name for the legend of the layer
FILTER(LANG(?layer) = "fr") . #take only the name in French
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;
v2("?book"):::projected
v4("?coord"):::projected
v1("?layer"):::projected
v3("?place"):::projected
c8(["bd:serviceParam"]):::iri
c1(["fr"]):::literal
c4(["wd:Q1164267"]):::iri
f0[["?layer = 'fr'"]]
f0 --> v1
v2 --"wdt:P840"--> v3
v2 --"wdt:P136"--> c4
v3 --"wdt:P625"--> v4
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c1
end