Import the parameters from local files, or from default (from package data)
Import_Parameters( path = NULL, Names = list(Site = "Site.R", Soil = "Soil.R", Coffee = "Coffee.R", Tree = NULL) )
path | The path to the parameter files folder. If |
---|---|
Names | List of the file names. Default: |
A list of all input parameters for DynACof
For the full list of parameters and the format of the parameter files, see site()
.
The function return the parameter files path in the list, to access it, see example.
# Importing defaults: Parameters= Import_Parameters() # Parameters files path: Parameters$files#> $Site #> [1] "Default from package function" #> #> $Soil #> [1] "Default from package function" #> #> $Coffee #> [1] "Default from package function" #> #> $Tree #> [1] "Default from package function" #>