
Get (or set) the x and/or y resolution of a Raster* object
xres(x)
yres(x)
res(x)
res(x) <- value
A single numeric value or two numeric values.
Raster* object
Resolution (single number or vector of two numbers)
r <- raster(ncol=18, nrow=18)
xres(r)
yres(r)
res(r)
res(r) <- 1/120
# set yres differently
res(r) <- c(1/120, 1/60)
Run the code above in your browser using DataLab