Skip to content

Instantly share code, notes, and snippets.

@tylermorganwall
Last active November 17, 2019 13:54
Show Gist options
  • Save tylermorganwall/bced3a66c65fb32763c525d0a8955ed4 to your computer and use it in GitHub Desktop.
Save tylermorganwall/bced3a66c65fb32763c525d0a8955ed4 to your computer and use it in GitHub Desktop.
Run this script to make sure your system is ready to run rayshader
options(rgl.useNULL = FALSE)
install.packages(c("ggplot2","raster", "spatstat", "spatstat.utils","suncalc", "remotes",
"here", "sp","lubridate","rgdal", "magick", "av","xml2","rayrender"))
install.packages("whitebox", repos="http://R-Forge.R-project.org")
library(whitebox)
whitebox::wbt_init()
#macOS: xcrun issue? type "xcode-select --install" into terminal
#macOS imager.so or libx11 errors? Install X11: https://www.xquartz.org
remotes::install_github("tylermorganwall/rayshader")
library(rayshader)
library(rayrender)
#This should bring up an external rgl window
montereybay %>%
sphere_shade() %>%
plot_3d(montereybay, water = TRUE, background="grey20", shadowcolor="grey5")
#You should see a snapshot in your current R device
render_snapshot(title_text = "Congrats, you're ready!",
title_bar_color = "white",
title_color = "white")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment