Nothing
##--#########################################--##
#### Available Species Codes and Assignments ####
##--#########################################--##
#' Available species in \pkg{woodValuationDE}, their codes, and parameter
#' assignments
#'
#' The function returns the available species, species codes, and assignments of
#' species to species groups for the economic valuation.
#'
#' @param method argument that is currently not used, but offers the possibility
#' to implement alternative parameters and functions in the
#' future.
#' @return A list with the species, species codes, and assignments to economic
#' species groups available in \pkg{woodValuationDE}.
#' @examples
#' get_species_codes()
#' @import dplyr
#'
#' @export
get_species_codes <- function(method = "fuchs.orig") {
list(
species = dplyr::select(params.wood.value$species.codes,
"species.code.nds",
"species.code.en",
"name.scientific"),
codes = c("english.species.names" = "en",
"species.codes.used.in.lower.saxony" = "nds"),
econ.assignments = dplyr::select(params.wood.value$species.codes,
"species.code.nds",
"species.code.bodelschwingh.revenues",
"species.code.bodelschwingh.costs",
"species.code.calamity.group")
) %>%
return()
}
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.