query-6bdd30f70bb24391ad521fcefa6a09b1
Canton du Québec
SELECT ?item ?itemLabel ?itemDescription ?alias ?dtFondation ?km2 ?locLabel ?coord
WHERE {
{ ?item wdt:P31/wdt:P279 wd:Q23019040 }
OPTIONAL {?item skos:altLabel ?alias filter (lang(?alias) = "fr,en")} .
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:P131 ?loc} .
FILTER NOT EXISTS { ?item wdt:P571 ?dtFondation }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr,en" .
}
}
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 ?locLabel ?coord
WHERE {
{ ?item wdt:P31/wdt:P279* wd:Q23019040 }
OPTIONAL {?item skos:altLabel ?alias filter (lang(?alias) = "fr,en")} .
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:P131 ?loc} .
FILTER NOT EXISTS { ?item wdt:P571 ?dtFondation }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr,en" .
}
}
ORDER BY (?regionLabel)
LIMIT 1800