2DegreesInvesting / tiltIndicator

Indicators for the TILT project
https://2degreesinvesting.github.io/tiltIndicator/
GNU General Public License v3.0
1 stars 1 forks source link

`example_products()` needs `tilt_subsector` #801

Closed maurolepore closed 1 week ago

maurolepore commented 1 week ago
devtools::load_all()
#> ℹ Loading tiltIndicator

# `toy_emissions_profile_products_ecoinvent()` has "tilt_subsector"
tiltToyData::toy_emissions_profile_products_ecoinvent() |> 
  readr::read_csv(show_col_types = FALSE) |> 
  hasName("tilt_subsector")
#> [1] TRUE

# So I expect `example_products()` to have "tilt_subsector" too but it doesn't
tiltIndicator:::example_products() |>
  hasName("tilt_subsector")
#> [1] FALSE

Created on 2024-06-25 with reprex v2.1.0