Skip to contents

Shortcut method to avoid the two-step !is.na(x)

Usage

# S4 method for SpatRaster
not.na(x, falseNA, filename="", ...)

Arguments

x

SpatRaster

falseNA

logical. Should the result be TRUE, NA instead of TRUE, FALSE?

filename

character. Output filename

...

additional arguments for writing files as in writeRaster

See also

Value

SpatRaster

Examples

r <- rast(ncols=10, nrows=10, vals=1)
r[10:20] <- NA
x <- not.na(r)