query-2957f1dc32bc6a50955386ffe4de9aae
Canton du Québec
SELECT ?item ?itemLabel ?itemDescription ?alias ?dtFondation ?km2 ?locationLabel ?coord
WHERE {
{ ?item wdt:P31/wdt:P279 wd:Q23019040 }
?item wdt:P131 ?location .
?location wdt:P31 wd:Q55998242 .
OPTIONAL {?item skos:altLabel ?alias filter (lang(?alias) = "fr")} .
OPTIONAL {?item wdt:P571 ?dtFondation} .
OPTIONAL {?item p:P2046 ?area_statement .
?area_statement psv:P2046 ?area_node .
?area_node wikibase:quantityAmount ?area .
?area_node wikibase:quantityUnit ?unit .
?unit wdt:P2370 ?conversionSI .
BIND(?area*?conversionSI/1000000 AS ?km2)} .
OPTIONAL {?item wdt:P625 ?coord}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
ORDER BY (?regionLabel)
LIMIT 1800
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 skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Canton du Québec
SELECT ?item ?itemLabel ?itemDescription ?alias ?dtFondation ?km2 ?locationLabel ?coord
WHERE {
{ ?item wdt:P31/wdt:P279* wd:Q23019040 }
?item wdt:P131* ?location .
?location wdt:P31 wd:Q55998242 .
OPTIONAL {?item skos:altLabel ?alias filter (lang(?alias) = "fr")} .
OPTIONAL {?item wdt:P571 ?dtFondation} .
OPTIONAL {?item p:P2046 ?area_statement .
?area_statement psv:P2046 ?area_node .
?area_node wikibase:quantityAmount ?area .
?area_node wikibase:quantityUnit ?unit .
?unit wdt:P2370 ?conversionSI .
BIND(?area*?conversionSI/1000000 AS ?km2)} .
OPTIONAL {?item wdt:P625 ?coord}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
ORDER BY (?regionLabel)
LIMIT 1800