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