raster (version 2.1-41)

flip: Flip

Description

Flip the values of a Raster* object by inverting the order of the rows (direction=y) or the columns direction='x'.

Usage

flip(x, direction, ...)

Arguments

x
Raster* object
direction
Character. 'y' or 'x'; or 1 (=x) or 2 (=y)
...
Additional arguments as for writeRaster

Value

  • RasterLayer or RasterBrick

See Also

transpose: t, rotate

Examples

Run this code
r <- raster(nrow=18, ncol=36)
m <- matrix(1:ncell(r), nrow=18)
r[] <- as.vector(t(m))
rx <- flip(r, direction='x')
r[] <- as.vector(m)
ry <- flip(r, direction='y')

Run the code above in your browser using DataLab