Nothing
#' Load and format STICS daily output file(s)
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' This function was deprecated because we realised that it's
#' a special case of the [get_sim()]
#'
#' @examples
#' \dontrun{
#' get_daily_results(path, "banana")
#' # ->
#' get_sim(path, "banana")
#' }
#'
#' @keywords internal
#'
#' @noRd
#'
get_daily_results <- function(...) {
lifecycle::deprecate_warn(
"1.0.0",
"get_daily_results()",
"get_sim()"
) # ,
# details = "This function is a special case of get_sim(); use it instead.")
get_sim(...)
}
#' Load and format STICS daily output file(s)
#'
#' @description Reads and format daily output file(s) (mod_s*.sti) for usm(s)
#' with possible selection on variable names, cumulative DOY and dates
#'
#' @param workspace Vector of path(s) of directory(ies) containing the STICS
#' output files to read (mod_s*.sti file) or path of a single directory
#' containing one sub-folder per USM (named as the USM names),
#' each of them containing the corresponding STICS output file to read.
#' In the second case, the argument `usm` must also be provided.
#' @param usm Vector of USM names. Optional, if not provided, the function
#' returns the results for all USMs.
#' @param var Vector of variable names for which results have to be provided.
#' Optional, all variables considered by default. See `get_var_info()`
#' to get the list of STICS variables names.
#' @param dates list of dates to filter (POSIX date)
#' @param usms_file Path of a USM xml file. Optional, if provided, the plant
#' names are added in the Plant column (see details).
#' @param javastics Path of JavaSTICS Optional, should be provided in addition
#' to usms_file to get the plant codes if the plant files used are not
#' in the workspace but in the JavaSTICS distribution (see Details).
#' @param verbose Logical value for displaying or not information while running
#'
#'
#' @param usm_name `r lifecycle::badge("deprecated")` `usm_name` is no
#' longer supported, use `usm` instead.
#' @param var_list `r lifecycle::badge("deprecated")` `var_list` is no
#' longer supported, use `var` instead.
#' @param dates_list `r lifecycle::badge("deprecated")` `dates_list` is no
#' longer supported, use `dates` instead.
#' @param usms_filepath `r lifecycle::badge("deprecated")` `usms_filepath`
#' is no longer supported, use `usms_file` instead.
#' @param javastics_path `r lifecycle::badge("deprecated")` `javastics_path`
#' is no longer supported, use `javastics` instead.
#'
#' @details
#' If `usm` is not specified (or equal to `NULL`), the
#' function reads the files from all usms in the `workspace`(s).
#'
#' If `usms_file` is provided and if the associated plant file is found,
#' the plant names in the "Plant" column of the generated `data.frame`
#' are either the plant code (as specified in the plant file) or
#' the name of the plant file, if the plant file is not found.
#'
#' If `usms_file` is not specified, the plants are named "plant_1" by default
#' (+ "plant_2" for intercrops).
#'
#' @return A list, where each element is a `data.frame` of simulation results
#' for the given usm. The list is named after the USM name.
#'
#' Intercrops are returned in a single `data.frame`, and are identified
#' using either the "Plant" or "Dominance" columns.
#'
#' See Details section for more information about the "Plant" column.
#'
#' @examples
#' path <- get_examples_path(file_type = "sti")
#' sim_data <- get_sim(path, "banana")
#'
#' @export
#'
get_sim <- function(workspace,
usm = NULL,
var = NULL,
dates = NULL,
usms_file = NULL,
javastics = NULL,
verbose = TRUE,
usm_name = lifecycle::deprecated(),
var_list = lifecycle::deprecated(),
dates_list = lifecycle::deprecated(),
usms_filepath = lifecycle::deprecated(),
javastics_path = lifecycle::deprecated()) {
# Managing deprecated arguments
# usm_name
if (lifecycle::is_present(usm_name)) {
lifecycle::deprecate_warn("1.0.0",
"get_sim(usm_name)",
"get_sim(usm)")
} else {
usm_name <- usm # to remove when we update inside the function
}
# var_list
if (lifecycle::is_present(var_list)) {
lifecycle::deprecate_warn("1.0.0",
"get_sim(var_list)",
"get_sim(var)")
} else {
var_list <- var # to remove when we update inside the function
}
# dates_list
if (lifecycle::is_present(dates_list)) {
lifecycle::deprecate_warn("1.0.0",
"get_sim(dates_list)",
"get_sim(dates)")
} else {
dates_list <- dates # to remove when we update inside the function
}
# usms_filepath
if (lifecycle::is_present(usms_filepath)) {
lifecycle::deprecate_warn("1.0.0",
"get_sim(usms_filepath)",
"get_sim(usms_file)")
} else {
usms_filepath <- usms_file # to remove when we update inside the function
}
# javastics_path
if (lifecycle::is_present(javastics_path)) {
lifecycle::deprecate_warn("1.0.0",
"get_sim(javastics_path)",
"get_sim(javastics)")
} else {
javastics_path <- javastics # to remove when we update inside the function
}
res <- get_file(
workspace, usm_name, var_list, dates_list, usms_filepath,
javastics_path, verbose, "sim"
)
# Testing if results list is not empty
# otherwise, setting "cropr_simulation" class attribute will fail
if (length(res) > 0) {
attr(res, "class") <- "cropr_simulation"
}
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.