Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

makeTiles

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 signature 'SpatRaster'
makeTiles(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

r <- rast(ncols=100, nrows=100)
values(r) <- 1:ncell(r)
x <- rast(ncol=2, nrow=2)
filename <- paste0(tempfile(), "_.tif")
ff <- makeTiles(r, x, filename)

terra

Spatial Data Analysis

v1.2-10
GPL (>= 3)
Authors
Robert J. Hijmans [cre, aut] (<https://orcid.org/0000-0001-5872-2872>), Roger Bivand [ctb] (<https://orcid.org/0000-0003-2392-6140>), Karl Forner [ctb], Jeroen Ooms [ctb] (<https://orcid.org/0000-0002-4035-0289>), Edzer Pebesma [ctb] (<https://orcid.org/0000-0001-8049-7069>)
Initial release
2021-05-12

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.