Divide a SpatRaster into "tiles". The cells of another SpatRaster (normally with a much lower resolution) or a SpatVector with polygon geometry can be used to define the tiles. You can also provide one or two numbers to indicate the number of rows and columns per tile.
# S4 method for SpatRaster
makeTiles(x, y, filename="tile_.tif", extend=FALSE, na.rm=FALSE, overwrite=FALSE, ...)
character (filenames)
SpatRaster
SpatRaster, SpatVector, or numeric
character. Output filename template. Filenames will be altered by adding the tile number for each tile
logical. If TRUE
, the extent of y
is expanded to assure that it covers all of x
logical. If TRUE
, tiles with only missing values are ignored
logical. If TRUE
, existing tiles are overwritten; otherwise they are skipped (without error or warning)
additional arguments for writing files as in writeRaster
vrt
to create a virtual raster from tiles
r <- rast(ncols=100, nrows=100)
values(r) <- 1:ncell(r)
x <- rast(ncols=2, nrows=2)
filename <- paste0(tempfile(), "_.tif")
ff <- makeTiles(r, x, filename)
ff
vrt(ff)
Run the code above in your browser using DataLab