Learn R Programming

rasterly (version 0.2.0)

rasterly_build: rasterly_build

Description

Produce a rasterly object and return the raster information required to produce an image

Usage

rasterly_build(rastObj)

Arguments

rastObj

A rasterly object. It should be a list of environments composed of a rasterly() and several rasterly_... layers.

See Also

rasterly, rasterly_points, [.rasterly, [<-.rasterly

Examples

Run this code
# NOT RUN {
r <- data.frame(x = rnorm(1e5), y = rnorm(1e5)) %>%
       rasterly(mapping = aes(x = x, y = y)) %>%
       rasterly_points(color = fire_map)
str(r)
p <- rasterly_build(r)
str(p)
# }

Run the code above in your browser using DataLab