Writes spatial raster values into tibble and adds coordinates.
util_raster2tibble(x, format = "long") util_raster2tibble(x, format = "long")
x | Raster* object |
---|---|
format | Either "long" (default) or "wide" output for the resulting tibble |
a tibble
You will loose any resolution, extent or reference system. The output is raw tiles.
maptib <- util_raster2tibble(fractal_landscape) # \dontrun{ library(ggplot2) ggplot(maptib, aes(x,y)) + coord_fixed() + geom_raster(aes(fill = z))# }