2021 Census of Population for capital cities in Canada, and Toronto, at the Dissemination Area (DA) level

This commit is contained in:
Diego Ripley
2025-08-08 13:24:31 -04:00
parent 7d33ab4587
commit bd246e297a
5 changed files with 784 additions and 0 deletions
File diff suppressed because one or more lines are too long
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Statistics Canada Tables Stats</title>
<link rel="stylesheet" href="./src/styles.css">
</head>
<body>
<div id="grid-container" class="grid-container"></div>
<script type="module">
async function init() {
try {
} catch (error) {
console.error('Failed to map app:', error);
}
}
// Initialize when DOM is loaded
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init);
} else {
init();
}
</script>
</body>
</html>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long