R/add.r

#' "Stack" a GRaster
#'
#' @description This function "stacks" one `GRaster` with another. It has the same functionality as [c()].
#'
#' @param x,value A `GRaster`.
#'
#' @returns A `GRaster`.
#'
#' @seealso [c()], [terra::add<-], [terra::c()]
#'
#' @example man/examples/ex_GRaster_GVector_subset_assign.r
#'
#' @name add<-
#' @aliases add<-,GRaster,GRaster-method
#' @docType methods
#' @rdname add
#' @exportMethod add<-
methods::setMethod(
	f = "add<-",
	signature = c(x = "GRaster", value = "GRaster"),
	function(x, value) c(x, value)
)

Try the fasterRaster package in your browser

Any scripts or data that you put into this service are public.

fasterRaster documentation built on April 3, 2025, 10:44 p.m.