Nothing
#' Clear current raster mask
#' @description This function has no parameters. It can be used to clear an existing raster mask.
#' @examples
#' if(check_running()) clear_mask()
#' @export
clear_mask <- function(){
if(!check_running()) stop("There is no valid GRASS session. Program halted.")
execGRASS(
"r.mask",
flags = "r"
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.