#' module_aglu_batch_food_SSP5_xml
#'
#' Construct XML data structure for \code{food_SSP5.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{food_SSP5.xml}. The corresponding file in the
#' original data system was \code{batch_food_SSP5_xml.R} (aglu XML).
module_aglu_batch_food_SSP5_xml <- function(command, ...) {
if(command == driver.DECLARE_INPUTS) {
return(c("L203.IncomeElasticity_SSP5"))
} else if(command == driver.DECLARE_OUTPUTS) {
return(c(XML = "food_SSP5.xml"))
} else if(command == driver.MAKE) {
all_data <- list(...)[[1]]
# Load required inputs
L203.IncomeElasticity_SSP5 <- get_data(all_data, "L203.IncomeElasticity_SSP5")
# ===================================================
# Produce outputs
create_xml("food_SSP5.xml") %>%
add_xml_data(L203.IncomeElasticity_SSP5, "IncomeElasticity") %>%
add_precursors("L203.IncomeElasticity_SSP5") ->
food_SSP5.xml
return_data(food_SSP5.xml)
} else {
stop("Unknown command")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.