query-32c4be1331cc770215070235b3fe53ac
Stations d'Ontario actives en 1953
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
# Stations d'Ontario actives en 1953
#defaultView:Map
SELECT ?item ?itemLabel ?coord
WHERE {
?item (wdt:P31/wdt:P279*) wd:Q190107.
?item wdt:P131 wd:Q1904 .
?item wdt:P729 ?service_entry .
# service entry is before 1953
FILTER (?service_entry <= "1953-01-01T00:00:00Z"^^xsd:dateTime) .
# and closure date not before 1953
OPTIONAL { ?item wdt:P3999 ?closureDate }
FILTER(
# Closure date is not set
?closureDate > "1953-01-01T00:00:00Z"^^xsd:dateTime|| !BOUND(?closureDate) # or closure date is after 1953
)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
OPTIONAL { ?item wdt:P625 ?coord. }