Skip to contents

Returns the registry of stationary EU ETS installations with operator name, activity type, country, city, and permit details. Sourced from the DG CLIMA Union Registry snapshot.

Usage

co2_euets_installations(country = NULL, refresh = FALSE)

Arguments

country

Optional two-letter registry codes.

refresh

Re-download? Default FALSE.

Value

A data frame.

Examples

# \donttest{
op <- options(carbondata.cache_dir = tempdir())
inst <- co2_euets_installations(country = "PL")
#>  Downloading EU ETS installation registry...
#> New names:
#>  `` -> `...2`
#>  `` -> `...3`
#>  `` -> `...4`
#>  `` -> `...5`
#>  `` -> `...6`
#>  `` -> `...7`
#>  `` -> `...8`
#>  `` -> `...9`
#>  `` -> `...10`
#>  `` -> `...11`
#>  `` -> `...12`
#>  `` -> `...13`
#>  `` -> `...14`
#>  `` -> `...15`
options(op)
# }