Create a GRaster
from a raster existing in the current GRASS session.
.makeGRaster(src, names = "raster", levels = "", ac = NULL, fail = TRUE)
A GRaster
.
Character (name of the raster in **GRASS) or a rastInfo
object.
Character: Name of the raster.
NULL
(default), a data.frame
, data.table
, an empty string (""
), or a list of data.frame
s, data.table
s, and/or empty strings: These become the raster's levels()
. If ""
, then no levels are defined.
Vector of numeric/integer values >=1, or NULL
(default): Active category column (offset by 1, so 1 really means the second column, 2 means the third, etc.). A value of NULL
uses an automated procedure to figure it out.
Logical: If TRUE
(default), and the raster either has a 0 east-west or north-south extent, then exit the function with an error. If fail
is FALSE
, then display a warning and return NULL
.
.makeGVector()