04 — Download

Download

Versioned releases on Open Science Foundation, with R code to read everything in. Citations and licences included with every release.

Releases

v1.0 · 2025

CARI+: 24-hour ED access (Canada, 2021 DA)

CSV (1 row per DA) and metadata documentation. Released on Open Science Foundation under CC BY International 4.0.

# Read the CARI+ 24h ED release into R
library(readr)

# Standard persistent link: https://osf.io/k7t32/files/xuzh9
# Modified link for R:
data_url <- "https://osf.io/k7t32/files/xuzh9/download"

# Read directly into R
cari_ED <- read.csv(data_url)

# Quick look at the normalized index for travel time (minutes)
summary(cari_ED$MIN_DA_Norm)