VeloxRaster_as.RasterLayer: Cast a VeloxRaster band as a RasterLayer object

Description Arguments Value Examples

Description

as.RasterLayer creates a RasterLayer object from a VeloxRaster band.

Arguments

band

Integer indicating the VeloxRaster band to be transformed.

assign_data_type

Boolean indicating whether the dataType attribute of the returned RasterLayer should be set. If TRUE, the dataType attribute is set to the smallest possible data type.

Value

A RasterLayer object.

Examples

1
2
3
4
5
6
## Make VeloxRaster
mat <- matrix(1:100, 10, 10)
vx <- velox(mat, extent=c(0,1,0,1), res=c(0.1,0.1), crs="+proj=longlat +datum=WGS84 +no_defs")
## Cast to RasterLayer
library(raster)
rl <- vx$as.RasterLayer(band=1)

hunzikp/velox documentation built on June 6, 2021, 2:40 a.m.