
Options
terraOptions.RdGet or set general options.
Details
The following options are available.
memfrac - value between 0 and 0.9 (larger values give a warning). The fraction of RAM that may be used by the program.
memmin - if memory required is below this threshold (in GB), the memory is assumed to be available. Otherwise, terra checks if it is available.
memmax - the maximum amount of RAM (in GB) that terra is allowed to use when processing a raster dataset. Should be less than what is detected (see mem_info), and higher values are ignored. Set it to a negative number or NA to not set this option. terraOptions only shows the value of memmax if it is set.
tempdir - directory where temporary files are written. The default what is returned by tempdir().
datatype - default data type. See writeRaster.
todisk - logical. If TRUE write all raster data to disk (temp file if no file name is specified). For debugging.
progress - non-negative integer. A progress bar is shown if the number of chunks in which the data is processed is larger than this number. No progress bar is shown if the value is zero.
verbose - logical. If TRUE debugging info is printed for some functions.
tolerance - numeric. Difference in raster extent (expressed as the fraction of the raster resolution) that can be ignored when comparing alignment of rasters.
parallel - logical. If TRUE multiple threads are used (using the TBB library) where that was implemented (including distance calculations on SpatVector and some focal computations. Use libVersion to check whether TBB support is available.
threads - non-negative integer. Cap on the number of threads used by parallel computation (when parallel=TRUE), by GDAL warp (in project and resample when threads=TRUE), and for compressed GeoTIFF writing. The default is 16. This cap avoids run-away thread counts on machines with very many cores; more threads rarely help as most parallel computations are limited by memory bandwidth. No more threads than the number of available CPUs are used on machines with fewer CPUs. Set it to 0 to remove the cap ("use all CPUs"). Lower values are useful to leave room for other processes, or when running multiple R processes at the same time).
Note
It is possible to set your own default options in "etc/.Rprofile.site" of your R installation like this
options(terra_default=list(tempdir="d:/temp", memfrac=.4))
But that may not be a good practice. It is clearer to set your favorite options at the beginning of each script.
Examples
terraOptions()
#> memfrac : 0.5
#> tolerance : 0.1
#> parallel : TRUE
#> verbose : FALSE
#> memmax : 16
#> todisk : FALSE
#> threads : 16
#> tempdir : /tmp/RtmpMTJa19
#> datatype : FLT4S
#> memmin : 1
#> progress : 3
terraOptions(memfrac=0.5, tempdir = "c:/temp")
#> Warning: [options] you cannot set the tempdir to a path that does not exist
terraOptions(progress=10)
terraOptions(parallel=TRUE, threads=4) # use TBB, capped at 4 threads
terraOptions()
#> memfrac : 0.5
#> tolerance : 0.1
#> parallel : TRUE
#> verbose : FALSE
#> memmax : 16
#> todisk : FALSE
#> threads : 4
#> tempdir : /tmp/RtmpMTJa19
#> datatype : FLT4S
#> memmin : 1
#> progress : 10