#' module_emissions_batch_all_energy_emissions_xml
#'
#' Construct XML data structure for \code{all_energy_emissions.xml}.
#'
#' @param command API command to execute
#' @param ... other optional parameters, depending on command
#' @return Depends on \code{command}: either a vector of required inputs,
#' a vector of output names, or (if \code{command} is "MAKE") all
#' the generated outputs: \code{all_energy_emissions.xml}. The corresponding file in the
#' original data system was \code{batch_all_energy_emissions.xml.R} (emissions XML).
module_emissions_batch_all_energy_emissions_xml <- function(command, ...) {
if(command == driver.DECLARE_INPUTS) {
return(c("L201.en_pol_emissions",
"L201.en_ghg_emissions",
"L201.en_bcoc_emissions",
"L201.nonghg_max_reduction",
"L201.nonghg_steepness",
"L201.nonghg_max_reduction_res",
"L201.nonghg_steepness_res",
"L201.nonghg_res",
"L201.ghg_res",
"L232.nonco2_prc",
"L232.nonco2_max_reduction",
"L232.nonco2_steepness",
"L241.nonco2_tech_coeff",
"L241.nonco2_max_reduction",
"L241.nonco2_steepness",
"L252.ResMAC_fos"))
} else if(command == driver.DECLARE_OUTPUTS) {
return(c(XML = "all_energy_emissions.xml"))
} else if(command == driver.MAKE) {
all_data <- list(...)[[1]]
emiss.coeff <- NULL # silence package check note
# Load required inputs
L201.en_pol_emissions <- get_data(all_data, "L201.en_pol_emissions")
L201.en_ghg_emissions <- get_data(all_data, "L201.en_ghg_emissions")
L201.en_bcoc_emissions <- get_data(all_data, "L201.en_bcoc_emissions")
L201.nonghg_max_reduction <- get_data(all_data, "L201.nonghg_max_reduction")
L201.nonghg_steepness <- get_data(all_data, "L201.nonghg_steepness")
L201.nonghg_max_reduction_res <- get_data(all_data, "L201.nonghg_max_reduction_res")
L201.nonghg_steepness_res <- get_data(all_data, "L201.nonghg_steepness_res")
L201.nonghg_res <- get_data(all_data, "L201.nonghg_res")
L201.ghg_res <- get_data(all_data, "L201.ghg_res")
L232.nonco2_prc <- get_data(all_data, "L232.nonco2_prc")
L232.nonco2_max_reduction <- get_data(all_data, "L232.nonco2_max_reduction")
L232.nonco2_steepness <- get_data(all_data, "L232.nonco2_steepness")
L241.nonco2_tech_coeff <- get_data(all_data, "L241.nonco2_tech_coeff") %>% rename(emiss.coef = emiss.coeff)
L241.nonco2_max_reduction <- get_data(all_data, "L241.nonco2_max_reduction")
L241.nonco2_steepness <- get_data(all_data, "L241.nonco2_steepness")
L252.ResMAC_fos <- get_data(all_data, "L252.ResMAC_fos")
# ===================================================
# Produce outputs
create_xml("all_energy_emissions.xml") %>%
add_xml_data(L201.en_pol_emissions, "InputEmissions") %>%
add_xml_data(L201.en_ghg_emissions, "InputEmissions") %>%
add_xml_data(L201.en_bcoc_emissions, "InputEmissCoeff") %>%
add_xml_data(L201.nonghg_max_reduction, "GDPCtrlMax") %>%
add_xml_data(L201.nonghg_steepness, "GDPCtrlSteep") %>%
add_xml_data(L201.nonghg_max_reduction_res, "GDPCtrlMaxRes") %>%
add_xml_data(L201.nonghg_steepness_res, "GDPCtrlSteepRes") %>%
add_xml_data(L201.nonghg_res, "ResEmissCoef") %>%
add_xml_data(L201.ghg_res, "ResEmissCoef") %>%
add_xml_data(L232.nonco2_prc, "StbTechOutputEmissions") %>%
add_xml_data(L232.nonco2_max_reduction, "GDPCtrlMax") %>%
add_xml_data(L232.nonco2_steepness, "GDPCtrlSteep") %>%
add_xml_data(L241.nonco2_tech_coeff, "InputEmissCoeff") %>%
add_xml_data(L241.nonco2_max_reduction, "GDPCtrlMax") %>%
add_xml_data(L241.nonco2_steepness, "GDPCtrlSteep") %>%
add_xml_data(L252.ResMAC_fos, "ResMAC") %>%
add_precursors("L201.en_pol_emissions", "L201.en_ghg_emissions", "L201.en_bcoc_emissions", "L201.nonghg_max_reduction", "L201.nonghg_steepness", "L201.nonghg_max_reduction_res", "L201.nonghg_steepness_res", "L201.nonghg_res", "L201.ghg_res", "L232.nonco2_prc", "L232.nonco2_max_reduction", "L232.nonco2_steepness", "L241.nonco2_tech_coeff", "L241.nonco2_max_reduction", "L241.nonco2_steepness", "L252.ResMAC_fos") ->
all_energy_emissions.xml
return_data(all_energy_emissions.xml)
} else {
stop("Unknown command")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.