#' module_aglu_batch_ag_cost_IRR_MGMT_xml
#'
#' Construct XML data structure for \code{ag_cost_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{ag_cost_IRR_MGMT.xml}. The corresponding file in the
#' original data system was \code{batch_ag_cost_IRR_MGMT_xml.R} (aglu XML).
module_aglu_batch_ag_cost_IRR_MGMT_xml <- function(command, ...) {
if(command == driver.DECLARE_INPUTS) {
return(c("L2052.AgCost_ag_irr_mgmt",
"L2052.AgCost_bio_irr_mgmt",
"L2052.AgCost_For"))
} else if(command == driver.DECLARE_OUTPUTS) {
return(c(XML = "ag_cost_IRR_MGMT.xml"))
} else if(command == driver.MAKE) {
all_data <- list(...)[[1]]
# Load required inputs
L2052.AgCost_ag_irr_mgmt <- get_data(all_data, "L2052.AgCost_ag_irr_mgmt")
L2052.AgCost_bio_irr_mgmt <- get_data(all_data, "L2052.AgCost_bio_irr_mgmt")
L2052.AgCost_For <- get_data(all_data, "L2052.AgCost_For")
# ===================================================
# Produce outputs
create_xml("ag_cost_IRR_MGMT.xml") %>%
add_xml_data(L2052.AgCost_ag_irr_mgmt, "AgCost") %>%
add_xml_data(L2052.AgCost_bio_irr_mgmt, "AgCost") %>%
add_xml_data(L2052.AgCost_For, "AgCost") %>%
add_precursors("L2052.AgCost_ag_irr_mgmt", "L2052.AgCost_bio_irr_mgmt", "L2052.AgCost_For") ->
ag_cost_IRR_MGMT.xml
return_data(ag_cost_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.