2 principles:
ggplot2 Cheatsheet: https://www.rstudio.com/wp-content/uploads/2015/03/ggplot2-cheatsheet.pdf
3 essentials:
4 optionals:
mapWorld <- ggplot () + borders ("world", colour = "gray50", fill = "gray50")print (mapWorld)
Coral bleaching data from ReefBase http://www.reefbase.org
# Upload datadatCoral <- read.csv("./Data/CoralBleachingData.csv", row.names = 1)# head (datCoral) #sanity check# str (datCoral)
levels (datCoral$bleaching_severity)
## [1] "High" "Low" "Medium" ## [4] "No Bleaching" "Severity Unknown"
# Remove the category "No Bleaching" and "Severity Unknown"datCoralSub <- datCoral[ datCoral$bleaching_severity %in% c("Low","Medium","High"), ]# Replace the factors in a different order than in alphabetic orderdatCoralSub$bleaching_severity <- factor( datCoralSub$bleaching_severity, levels = levels(datCoralSub$bleaching_severity)[c(2,3,1)] )
mapCoral <- mapWorld + geom_point (data = datCoralSub, aes(x = longitude, y = latitude, colour = bleaching_severity), alpha = 0.5)print (mapCoral)
mapColour <- mapCoral + scale_colour_manual (values = c("Low" = "yellow", "Medium" = "orange", "High" = "red")) print(mapColour)
mapFacets <- mapColour + facet_wrap (~ year)print (mapFacets)
Kahle, D., & Wickham, H. (2013). ggmap: Spatial Visualization with ggplot2. R Journal, 5(1).
Kahle, D., & Wickham, H. (2013). ggmap: Spatial Visualization with ggplot2. R Journal, 5(1).
Chang, W. (2012). R graphics cookbook: practical recipes for visualizing data. " O'Reilly Media, Inc.".
Kahle, D., & Wickham, H. (2013). ggmap: Spatial Visualization with ggplot2. R Journal, 5(1).
Chang, W. (2012). R graphics cookbook: practical recipes for visualizing data. " O'Reilly Media, Inc.".
Cheatsheet: https://www.nceas.ucsb.edu/~frazier/RSpatialGuides/ggmap/ggmapCheatsheet.pdf
Get the updated version of ggmap:
#if(!requireNamespace("devtools")) install.packages("devtools")#devtools::install_github("dkahle/ggmap", ref = "tidyup")library (ggmap)library (tidyverse)
Devtools: (developper tools) providing R functions that simplify many common tasks for package developping
Enter your API key in R with ggmap::register_google (key = "number")
Get the desired map
# Get the map form source # Stockholm University recenteredsu <- get_map ( location = c(lon = 18.0590, lat = 59.3644), source = "stamen", maptype = "terrain", zoom = 16, crop = TRUE) # make the map into a # ggmap object to plot itsuMap <- ggmap(su, extent = "device")# Visualise the mapprint(suMap)
Note: zoom between 3 (continent) to 21 (building), default value 10 (city)
Get the locations
(enable Geocoding API in the Google Console)
# Create a tibble of SU's important locationssuLocations <- tibble( location = c("DEEP, Stockholm University", "Stockholm University Library", "Universitetet, Stockholm"))# Get the geocode (lat/lon) of the locationssuCoord <- geocode(suLocations$location)# Create a data frame of the data# for easier plottingsuDat <- cbind(suLocations, suCoord)suDat
## location lon lat## 1 DEEP, Stockholm University 18.06013 59.36604## 2 Stockholm University Library 18.06097 59.36327## 3 Universitetet, Stockholm 18.05460 59.36519
Plot the locations
# Plot important locationssuLocationsMap <- suMap + geom_point(data = suDat, aes(x = lon, y = lat), color = 'red', size = 5)print (suLocationsMap)
Add names of locations
# Add name of placessuLocMapNames <- suLocationsMap + geom_text(data = suDat, aes(label = location), size = 5, hjust = 0, vjust = -1)print (suLocMapNames)
Get the route (enable Directions API in the Google Console)
# Create the route with trek()# Deep to librarygoto_library <- trek( from = "DEEP, Stockholm University", to = "Stockholm University Library", structure = "route", mode = "walking")# Add route to mapdeepToLibraryMap <- suLocMapNames + geom_path(data = goto_library, aes(x = lon, y = lat), colour = "blue", size = 1.5, alpha = .5, lineend = "round")print (deepToLibraryMap)
Get the route (enable Directions API in the Google Console)
# Library to t-bana stationgoto_tbana <- trek( from = "Stockholm University Library", to = "Universitetet, Stockholm", structure = "route", mode = "walking")# Add route to mapLibraryToTbanaMap <- suLocMapNames + geom_path(data = goto_library, aes(x = lon, y = lat), colour = "blue", size = 1.5, alpha = .5, lineend = "round") + geom_path(data = goto_tbana, aes(x = lon, y = lat), colour = "blue", size = 1.5, alpha = .5, lineend = "round")print (LibraryToTbanaMap)
Option local: Create a map of where you live, the closest metro station and your favorite coffee shop/restaurant/bar in town.
Option UK: Create a map of the pubs and bars in the town “Oldham”, UK
RaukR course:
library (leaflet): open-source JavaScript libraries for interactive maps
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |