query-e8c5817828f8a5b65e16764def3724bd
More details please don't really help me. Do someone who know these things can developp more ? Or show me how to show the pink color of P465 of this : this sectionI tried to get informations on how to change de view results of maps. The reading of Hi,
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#>
#Metro lines in Montreal, Quebec, Canada
#defaultView:Map{"layer": "?rgb"}
SELECT ?station ?stationLabel ?line ?lineLabel ?rgb ?coord ?image
WHERE {
?line wdt:P81 wd:Q43298334 ;
wdt:P625 ?coord.
OPTIONAL { ?line wdt:P465 ?rgb. }
# ?station wdt:P81 ?line;
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("?coord"):::projected
v1("?line"):::projected
v3("?rgb"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q43298334"]):::iri
c8(["fr"]):::literal
v1 --"wdt:P81"--> c2
v1 --"wdt:P625"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P465".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end