query-33c8becd4059c506c3225db83214165e
TODO
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#>
#Les différentes lignes du métro de Montréal, actuelles, à venir ou en projet
#defaultView:Map{"layer": "?lineLabel", "hide": ["?rgb", "?coord"]}
SELECT ?station ?stationLabel ?line ?lineLabel ?rgb ?coord ?image
WHERE {
?line wdt:P361 wd:Q392377.
OPTIONAL { ?line wdt:P465 ?rgb. }
?station wdt:P81 ?line;
wdt:P625 ?coord.
OPTIONAL {?station wdt:P18 ?image}
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;
v4("?coord"):::projected
v5("?image"):::projected
v1("?line"):::projected
v2("?rgb"):::projected
v3("?station"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q392377"]):::iri
c10(["fr"]):::literal
v1 --"wdt:P361"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P465".-> v2
end
v3 --"wdt:P81"--> v1
v3 --"wdt:P625"--> v4
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P18".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end