
Last chance! 50% off unlimited learning
Sale ends in
v
from 'x', 'y', 'col', 'row', or 'cell'. Alternatively, a function can be used. In that case, cell values are initialized without reference to pre-existing values. E.g., initialize with a random number (fun=runif
).
Either supply an argument to fun
, or to v
, but not both.init(x, fun, v, filename="", ...)
writeRaster
r <- raster(ncols=36, nrows=18)
x <- init(r, v='cell')
y <- init(r, fun=runif)
# there are different ways to set all values to 1
# for large rasters:
set1f <- function(x){rep(1, x)}
z1 <- init(r, fun=set1f, filename='test.grd', overwrite=TRUE)
# equivalent to
z2 <- setValues(r, rep(1, ncell(r)))
# or
r[] <- rep(1, ncell(r))
# or
r[] <- 1
Run the code above in your browser using DataLab