Skip to contents

Downloads the data catalog of Our World in Data (OWID) hosted on Datasette.

Usage

owid_get_catalog(snake_case = TRUE)

Arguments

snake_case

Logical. If TRUE (default), converts column names to lowercase.

Value

A tibble containing the OWID catalog.

Examples

# \donttest{
# Download a full table
owid_get_catalog()
#> # A tibble: 5,301 × 19
#>    rowid    id config_id            is_inheritance_enabled created_at updated_at
#>    <int> <int> <chr>                <lgl>                  <date>     <date>    
#>  1    26  8727 01978d86-beee-7595-… TRUE                   2025-06-20 2025-06-21
#>  2    25  8726 01978cf4-6363-7356-… FALSE                  2025-06-20 2025-06-21
#>  3    24  8725 01978ce6-0056-70d1-… TRUE                   2025-06-20 2025-06-21
#>  4    23  8724 01978c7e-4996-7d83-… TRUE                   2025-06-20 2025-06-21
#>  5    22  8723 01978878-d5b8-78c0-… FALSE                  2025-06-19 2025-06-19
#>  6    21  8722 01978873-eaf5-75c0-… FALSE                  2025-06-19 2025-06-19
#>  7    20  8721 019787a1-5f3e-7001-… FALSE                  2025-06-19 NA        
#>  8    19  8720 019782bc-b4ad-71d2-… TRUE                   2025-06-18 NA        
#>  9    18  8719 019781f9-87c8-7f47-… FALSE                  2025-06-18 2025-06-18
#> 10    17  8718 019781ec-db06-7b85-… TRUE                   2025-06-18 2025-06-18
#> # ℹ 5,291 more rows
#> # ℹ 13 more variables: last_edited_at <date>, published_at <date>,
#> #   last_edited_by_user_id <int>, published_by_user_id <int>,
#> #   is_indexable <lgl>, config <chr>, slug <chr>, type <chr>, title <chr>,
#> #   subtitle <chr>, note <chr>, title_plus_variant <chr>, is_published <lgl>
# }