In the simInit()
call, a parameter called .saveObjects
can be provided in
each module.
This must be a character string vector of all object names to save. These objects will
then be saved whenever a call to saveFiles
is made.
saveFiles(sim)
(invisibly) the modified sim
object.
invoked for side effect of saving the simulation to file.
The file names will be equal to the object name plus time(sim)
is
appended at the end.
The files are saved as .rds
files, meaning, only one object gets
saved per file.
For objects saved using this function, the module developer must create save
events that schedule a call to saveFiles
.
If this function is used outside of a module, it will save all files in the
outputs(sim)
that are scheduled to be saved at the current time in the simList.
There are several ways to save objects using SpaDES
.
It is not possible to schedule separate saving events for each object
that is listed in the .saveObjects
.
Using the outputs
slot in the simInit()
call.
See example in simInit()
.
This can be convenient because it gives overall control of many modules at a
time, and it gets automatically scheduled during the simInit()
call.
Using the saveFiles
function inside a module.
This must be accompanied by a .saveObjects
vector or list element in the
params
slot in the simList()
.
Usually a module developer will create this method for future users of their module.
A module developer can save any object at any time inside their module, using
standard R functions for saving R objects (e.g., save
or saveRDS
).
This is the least modular approach, as it will happen whether a module user
wants it or not.
# \donttest{
if (requireNamespace("SpaDES.tools", quietly = TRUE) &&
requireNamespace("NLMR", quietly = TRUE)) {
## This will save the "caribou" object at the save interval of 1 unit of time
## in the outputPath location
outputPath <- file.path(tempdir(), "test_save")
times <- list(start = 0, end = 1, "month")
modules <- list("randomLandscapes", "caribouMovement")
paths <- list(
modulePath = getSampleModules(tempdir()),
outputPath = outputPath
)
opts <- options("spades.moduleCodeChecks" = FALSE,
"spades.useRequire" = FALSE) # not necessary for example
## save multiple outputs
parameters <- list(
.globals = list(stackName = "landscape"),
caribouMovement = list(
.saveObjects = c("caribou", "habitatQuality"),
.saveInitialTime = 1, .saveInterval = 1
),
randomLandscapes = list(.plots = NA, nx = 20, ny = 20))
mySim <- simInit(times = times, params = parameters, modules = modules,
paths = paths)
spades(mySim, .plotInitialTime = NA) # plotting not relevant for this example
dir(outputPath)
# remove the files
file.remove(dir(outputPath, full.names = TRUE))
options(opts) # clean up
}# }
#> Setting:
#> options(
#> spades.outputPath = '/tmp/Rtmp45trFG/test_save'
#> spades.modulePath = '/tmp/Rtmp45trFG/sampleModules'
#> )
#> Paths set to:
#> options(
#> rasterTmpDir = '/tmp/Rtmp45trFG/SpaDES/scratch/raster'
#> reproducible.cachePath = '/tmp/Rtmp45trFG/myProject/cache'
#> spades.inputPath = '/tmp/Rtmp45trFG/myProject/inputs'
#> spades.outputPath = '/tmp/Rtmp45trFG/test_save'
#> spades.modulePath = '/tmp/Rtmp45trFG/sampleModules'
#> spades.scratchPath = '/tmp/Rtmp45trFG/SpaDES/scratch'
#> )
#> terra::terraOptions(tempdir = '/tmp/Rtmp45trFG/SpaDES/scratch/terra'
#> Nov21 04:22:47 simInit Using setDTthreads(1). To change: 'options(spades.DTthreads = X)'.
#> Nov21 04:22:47 simInit The following .globals were used:
#> Nov21 04:22:47 simInit Key: <global, module>
#> Nov21 04:22:47 simInit module global
#> Nov21 04:22:47 simInit <char> <char>
#> Nov21 04:22:47 simInit 1: caribouMovement stackName
#> Nov21 04:22:47 simInit 2: randomLandscapes stackName
#> Elpsed time for simInit: 0.0999403 secs
#> Nov21 04:22:47 simInit Using setDTthreads(1). To change: 'options(spades.DTthreads = X)'.
#> Nov21 04:22:47 chckpn:init total elpsd: 0.1 secs | 0 checkpoint init 0
#> Nov21 04:22:47 save :init total elpsd: 0.1 secs | 0 save init 0
#> Nov21 04:22:47 prgrss:init total elpsd: 0.11 secs | 0 progress init 0
#> Nov21 04:22:47 load :init total elpsd: 0.11 secs | 0 load init 0
#> Nov21 04:22:47 rndmLn:init total elpsd: 0.11 secs | 0 randomLandscapes init 1
#> Nov21 04:22:47 rndmLn:init New objects created:
#> Nov21 04:22:47 rndmLn:init <char>
#> Nov21 04:22:47 rndmLn:init 1: landscape
#> Nov21 04:22:47 crbMvm:init total elpsd: 0.54 secs | 0 caribouMovement init 1
#> Nov21 04:22:47 crbMvm:init New objects created:
#> Nov21 04:22:47 crbMvm:init <char>
#> Nov21 04:22:47 crbMvm:init 1: caribou
#> Nov21 04:22:48 crbMvm:move total elpsd: 0.55 secs | 1 caribouMovement move 5
#> Nov21 04:22:48 crbMvm:move New objects created:
#> Nov21 04:22:48 crbMvm:move <char>
#> Nov21 04:22:48 crbMvm:move 1: habitatQuality
#> Nov21 04:22:48 crbMvm:save total elpsd: 0.6 secs | 1 caribouMovement save 11
#> Nov21 04:22:50 crbMvm:save caribouMovement
#> simList saved in
#> SpaDES.core:::savedSimEnv()$.sim
#> It will be deleted at next spades() call.