You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to properly specify the config files in workflow.transition.monitor or workflow.pacta, available sector/technology pairs in the exported asset data need to be known. It would be advantageous if these pairs were determined during the export process and included in the manifest to make this easier.
e.g.
library(tidyverse)
root_dir<-"~/Downloads"timestamp_dir<-"2023Q4_20240228T144514Z"equity_abcd_scenario<- readRDS(file.path(root_dir, timestamp_dir, "equity_abcd_scenario.rds"))
bonds_abcd_scenario<- readRDS(file.path(root_dir, timestamp_dir, "bonds_abcd_scenario.rds"))
equity_abcd_scenario %>%
select(ald_sector, technology) %>%
distinct() %>%
arrange(ald_sector, technology)
#> # A tibble: 17 × 2#> ald_sector technology #> <chr> <chr> #> 1 Automotive FuelCell #> 2 Automotive ICE #> 3 Aviation Freight #> 4 Aviation Passenger #> 5 Cement Integrated facility #> 6 Coal Coal #> 7 Oil&Gas Gas #> 8 Oil&Gas Oil #> 9 Power CoalCap #> 10 Power GasCap #> 11 Power HydroCap #> 12 Power NuclearCap #> 13 Power OilCap #> 14 Power RenewablesCap #> 15 Steel Basic Oxygen Furnace#> 16 Steel Electric Arc Furnace#> 17 Steel Open Hearth Furnacebonds_abcd_scenario %>%
select(ald_sector, technology) %>%
distinct() %>%
arrange(ald_sector, technology)
#> # A tibble: 17 × 2#> ald_sector technology #> <chr> <chr> #> 1 Automotive FuelCell #> 2 Automotive ICE #> 3 Aviation Freight #> 4 Aviation Passenger #> 5 Cement Integrated facility #> 6 Coal Coal #> 7 Oil&Gas Gas #> 8 Oil&Gas Oil #> 9 Power CoalCap #> 10 Power GasCap #> 11 Power HydroCap #> 12 Power NuclearCap #> 13 Power OilCap #> 14 Power RenewablesCap #> 15 Steel Basic Oxygen Furnace#> 16 Steel Electric Arc Furnace#> 17 Steel Open Hearth Furnace
In order to properly specify the config files in workflow.transition.monitor or workflow.pacta, available sector/technology pairs in the exported asset data need to be known. It would be advantageous if these pairs were determined during the export process and included in the manifest to make this easier.
e.g.
AB#10383
The text was updated successfully, but these errors were encountered: