Files
d4c-datapkg-statistical/README.md
T
2025-06-06 11:20:41 +00:00

41 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## Table of Contents
- [About](#about)
- [How to Run](#how-to-run)
- [License](#license)
## About
**process-statcan-data** is a set of scripts that helps you load and prepare Statistics Canada data for analysis. It performs schema normalization, field name standardization, and adds derived fields (such as DGUIDs) to improve consistency, interoperability, and usability across datasets.
All output datasets are written in GeoParquet format to support modern geospatial workflows and ensure broad compatibility across platforms.
This project processes the following datasets:
- **Geographic Boundaries** (20012021)
- **Census of Population** (20012021)
- **National Household Survey** (20112016)
- **Census of Agriculture** (20012021)
- **National Address Register** (20222024)
- **Road Network Files** (20012021)
## How to Run
This project uses a Dev Container environment for setup and execution. If you are using VS Code all you need is the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) installed and Docker installed on your system.
```shell
# Clone the repository
git clone https://github.com/dataforcanada/process-statcan-data.git
# Navigate to the project directory
cd process-statcan-data
# In Dev Container
./main.sh
```
## License
This product is distributed under an MIT license.
[Back to top](#top)