As the ever growing R package environment can be a rough terrain to navigate and find the appropriate tools to achieve one’s goals, this vignette is meant to point out some ways to overcome initial problems with visualizing neutral landscape models or more general raster data. This is probably a heavily biased view on packages and functions and I am sure there are other good R packages out there to achieve the same (if so - feel free to point that out to me and I will include it!). However, I am also sure this collection can at least be a kickstart for quickly visualizing your results and help you to communicate them.

Static plots

landscapetools

landscapetools function show_landscape was developed to help users to adhere to some standards concerning color scales and typography. This means for example that by default the viridis color scale is applied which makes your plots easier to read by those with colorblindness.

library("NLMR")
library("landscapetools")

landscape <- nlm_mosaictess(200, 200, germs = 444)

# default theme
show_landscape(landscape)

rasterVis

rasterVis also offers some convenience functions to plot raster, for example:

library("NLMR")
library("rasterVis")

landscape <- nlm_mosaictess(200, 200, germs = 444)

levelplot(landscape, , margin = FALSE)

Another nice function from rasterVis is gplot(), a wrapper to use ggplot2 with raster data without reshaping your data as long data.frame:

library("NLMR")
library("rasterVis")

landscape <- nlm_mosaictess(200, 200, germs = 444)

gplot(landscape) + 
  geom_tile(aes(fill = value)) + 
  coord_equal()

ggplot2

If you want to start from scratch with ggplot2:

library("NLMR")
library("raster")
library("ggplot2")

landscape <- nlm_mosaictess(200, 200, germs = 444)

# transform to long format for ggplot2
landscape_long <- as.data.frame(landscape, xy = TRUE)

# plot with ggplot2
ggplot(landscape_long, aes(x,y)) + 
  geom_tile(aes(fill = layer)) + 
  coord_equal()

raster + plot()

… if you are in a lot of hurry, raster itself also has a plot method for raster:

library("NLMR")
library("raster")

landscape <- nlm_mosaictess(200, 200, germs = 444)

plot(landscape)

Contour plots

library("NLMR")
library("rasterVis")

landscape <- nlm_mpd(ncol = 50, nrow = 50, roughness = 0.6)


contourplot(landscape,
            pretty = TRUE) 

Interactive plots

rgl + rasterVis

library("rgl")
library("rasterVis")
library("viridis")
library("NLMR")
landscape <- nlm_mpd(ncol = 100, nrow = 100, roughness = 0.6)

plot3D(landscape,
       zfac=2,
       lit=FALSE,
       col=colorRampPalette(magma(11)))

rglwidget()

highcharter + plotly

rayshader