resolution | R Documentation |
Get (or set) the x and/or y resolution of a Raster* object
xres(x)
yres(x)
res(x)
res(x) <- value
x |
Raster* object |
value |
Resolution (single number or vector of two numbers) |
A single numeric value or two numeric values.
extent
, ncell
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.