grassDir
(character): The folder in which GRASS is installed on your computer. You must set this option to run most fasterRaster functions. Depending on your operating system, your install directory will look something like this:
Windows: "C:/Program Files/GRASS GIS 8.4"
Mac OS: "/Applications/GRASS-8.4.app/Contents/Resources"
Linux: "/usr/local/grass"
addonsDir
(character): Folder in which GRASS addons are stored. If NA
and grassDir
is not NA
, this will be assumed to be file.path(grassDir, "addons")
. The default values is NA
.
cores
(integer/numeric integer): Number of processor cores to use on a task. The default is 2. Some GRASS modules are parallelized.
memory
(integer/numeric): The amount of memory to allocate to a task, in GB, for GRASS. The default is 2048 MB (i.e., 2 GB). Some GRASS modules can take advantage of more memory.
useDataTable
(logical): If FALSE
(default), functions that return tabular output produce data.frame
s. If TRUE
, output will be data.table
s from the data.table package. This can be much faster, but it might require you to know how to use data.table
s if you want to manipulate them in R. You can always convert them to data.frame
s using base::as.data.frame()
.
verbose
(logical): If TRUE
, show progress during function operations and other messages. Default is FALSE
. This overrides the value of any verbose
argument in a function.
debug
(logical): If TRUE
, show GRASS messages and otherwise hidden slots in classes. This is mainly used for debugging, so most users will want to keep this at its default, FALSE
.
workDir
(character): The folder in which GRASS rasters, vectors, and other objects are created and manipulated. By default, this is given by tempdir()
. Note that on some systems, changing the default folder to somewhere else can cause problems with fasterRaster being able to find rasters in GRASS that have been created.