#' module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml
#'
#' Construct XML data structure for \code{all_aglu_emissions_IRR_MGMT.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_aglu_emissions_IRR_MGMT.xml}. The corresponding file in the
#' original data system was \code{batch_all_aglu_emissions_IRR_MGMT.xml} (emissions XML).
module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml <- function(command, ...) {
if(command == driver.DECLARE_INPUTS) {
return(c("L2112.AWBEmissions",
"L2112.AGREmissions",
"L211.AnEmissions",
"L211.AnNH3Emissions",
"L252.MAC_an",
"L2112.AGRBio",
"L2112.AWB_BCOC_EmissCoeff",
"L2112.nonghg_max_reduction",
"L2112.nonghg_steepness",
"L2522.AgMAC"))
} else if(command == driver.DECLARE_OUTPUTS) {
return(c(XML = "all_aglu_emissions_IRR_MGMT.xml"))
} else if(command == driver.MAKE) {
all_data <- list(...)[[1]]
# Load required inputs
L2112.AWBEmissions <- get_data(all_data, "L2112.AWBEmissions")
L2112.AGREmissions <- get_data(all_data, "L2112.AGREmissions")
L211.AnEmissions <- get_data(all_data, "L211.AnEmissions")
L211.AnNH3Emissions <- get_data(all_data, "L211.AnNH3Emissions")
L252.MAC_an <- get_data(all_data, "L252.MAC_an")
L2112.AGRBio <- get_data(all_data, "L2112.AGRBio")
L2112.AWB_BCOC_EmissCoeff <- get_data(all_data, "L2112.AWB_BCOC_EmissCoeff")
L2112.nonghg_max_reduction <- get_data(all_data, "L2112.nonghg_max_reduction")
L2112.nonghg_steepness <- get_data(all_data, "L2112.nonghg_steepness")
L2522.AgMAC <- get_data(all_data, "L2522.AgMAC")
bio_N20_coef <- compVal <- bio_N2O_coef<- NULL # Silence package checks
# ===================================================
# Rename the tibble column names to match the header names.
L2112.AGRBio <- rename(L2112.AGRBio, emiss.coef = bio_N2O_coef)
# Produce outputs
create_xml("all_aglu_emissions_IRR_MGMT.xml") %>%
add_xml_data(L2112.AGRBio, "OutputEmissCoeffAg") %>%
add_xml_data(L2112.AWB_BCOC_EmissCoeff, "OutputEmissCoeffAg") %>%
add_xml_data(L2112.nonghg_max_reduction, "AgGDPCtrlMax") %>%
add_xml_data(L2112.nonghg_steepness, "AgGDPCtrlSteep") %>%
add_xml_data(L211.AnEmissions, "OutputEmissions") %>%
add_xml_data(L211.AnNH3Emissions, "OutputEmissions") %>%
add_xml_data(L2112.AWBEmissions, "OutputEmissionsAg") %>%
add_xml_data(L2112.AGREmissions, "OutputEmissionsAg") %>%
add_xml_data(L252.MAC_an, "MAC") %>%
add_xml_data(L2522.AgMAC, "AgMAC") %>%
add_precursors("L2112.AWBEmissions",
"L2112.AGREmissions",
"L211.AnEmissions",
"L211.AnNH3Emissions",
"L252.MAC_an",
"L2112.AGRBio",
"L2112.AWB_BCOC_EmissCoeff",
"L2112.nonghg_max_reduction",
"L2112.nonghg_steepness",
"L2522.AgMAC") ->
all_aglu_emissions_IRR_MGMT.xml
return_data(all_aglu_emissions_IRR_MGMT.xml)
} else {
stop("Unknown command")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.