Learn R Programming

terra (version 1.2-5)

tiles: Make tiles

Description

Divide a SpatRaster into "tiles". The cell of another SpatRaster (normally with a much lower resolution) are used to define the tiles.

Usage

# S4 method for SpatRaster
tiles(x, y, filename="tile_.tif", ...)

Arguments

x

SpatRaster

y

SpatRaster or SpatVector

filename

character. Output filename template. Filenames will be altered by adding the tilenumber for each tile

...

additional arguments for writing files as in writeRaster

Value

character (filenames)

Examples

Run this code
# NOT RUN {
r <- rast(ncols=100, nrows=100)
values(r) <- 1:ncell(r)
x <- rast(ncol=2, nrow=2)
filename <- paste0(tempfile(), "_.tif")
ff <- tiles(r, x, filename)
# }

Run the code above in your browser using DataLab