flip: Flip

Description Usage Arguments Value See Also Examples

Description

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

Usage

1

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

1
2
3
4
5
6
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')

miraisolutions/raster documentation built on May 30, 2019, 11:41 p.m.