Trim (shrink) a SpatRaster by removing outer rows and columns that are NA
or another value.
# S4 method for SpatRaster
trim(x, padding=0, value=NA, filename="", ...)
SpatRaster
SpatRaster
integer. Number of outer rows/columns to keep
numeric. The value of outer rows or columns that are to be removed
character. Output filename
additional arguments for writing files as in writeRaster
r <- rast(ncols=10, nrows=10, xmin=0,xmax=10,ymin=0,ymax=10)
v <- rep(NA, ncell(r))
v[c(12,34,69)] <- 1:3
values(r) <- v
s <- trim(r)
Run the code above in your browser using DataLab