Skip to contents

Writes spatial raster values into tibble and adds coordinates.

Usage

util_raster2tibble(x, format = "long")

util_raster2tibble(x, format = "long")

Arguments

x

Raster* object

format

Either "long" (default) or "wide" output for the resulting tibble

Value

a tibble

Details

You will loose any resolution, extent or reference system. The output is raw tiles.

Examples

maptib <- util_raster2tibble(fractal_landscape)
if (FALSE) {
library(ggplot2)
ggplot(maptib, aes(x,y)) +
    coord_fixed() +
    geom_raster(aes(fill = z))
}