Maps in R
rstudio rmarkdown
mapping
Making maps in RStudio
π Links to get to started for mapping in RStudio
- R-spatial
- This tutorial here is a good place to start
- ggplot, maps
- Making maps with R, by Eric C. Anderson
- Tutorial 5.4 - Mapping and spatial analyses in R
- Making maps of your study sites, Environmental Computing
- Displaying Geo-Spatial Data with R by Martin Schweinberger
- Leaflet for R - Leaflet is one of the most popular open-source JavaScript libraries for interactive maps. Itβs used by websites ranging from The New York Times and The Washington Post to GitHub and Flickr, as well as GIS specialists like OpenStreetMap, Mapbox, and CartoDB.
- Map Plots Created With R And Ggmap, by Litte Miss Data
- Using spatial data wth R by Claudia A Engel
- Spatial Data Science, analysing species distribution data
- Mapping Australia in R by Charles Coverdale
- Ozmaps Github
- Raster and vector geospatial data with R by Hayley Puckeridge
- Geocomputation with R by Spatial Vision
- Data wrangling for spatial analysis: R Workshop by Dr. Chris J Brown, Prof. David Schoeman, Prof. Anthony J Richardson, Dr. Bill Venables
- Visualizing Climate Data: A Tidy Tuesday Project From January 2020 Using Data From The Australia Wildfires
- Lesson 8. Creating Interactive Spatial Maps in R Using Leaflet by Carson Farmer, Leah Wasser
- tmap package
- Geocomputation with R by Robin Lovelace, Jakub Nowosad, Jannes Muenchow
- An Introduction to Spatial Analysis in R by Seascape models
- Oz viridis by Nicholas Tierney - mapping bom temperature and rainfall data for Australia
- AWAPer - an R-package for catchment-weighted climate data anywhere in Australia
- ClimClass package
- Climate Distance Mapper R script, USGS
- Making maps with R, by Eric C Anderson
- Spatial data in R: Using R as a GIS by Francisco Rodriguez-Sanchez
- Calculating species climate envelopes in R, by Remko Duursma
- Niche - An R Shint app
π Useful data sets for mapping
- Australian government, climatology/meteorology/atmosphere
- Interim Biogeographic Regionalisation for Australia (IBRA), Version 7 (Regions), datset download here
- Biodiversity and Climate change virtual lab
Example workflow 1
Following tutorial at this link
library(sp)
library(dplyr)
library(rgdal)
library(raster)
library(ggplot2)
library(readr)
Import csv file containing lon and lat coords
<- read_csv("sites.csv") Sites
Create buffer around your data points
<- 0.11
buffer <- c(
geo_bounds left = min(Sites$Lon) - buffer,
bottom = min(Sites$Lat) - buffer,
right = max(Sites$Lon) + buffer,
top = max(Sites$Lat) + buffer
)<-
Sites.grid expand.grid(
lon_bound = c(geo_bounds[1], geo_bounds[3]),
lat_bound = c(geo_bounds[2], geo_bounds[4])
)
coordinates(Sites.grid) <- ~ lon_bound + lat_bound
Load mapping files Downloaded from GEODATA COAST 100K 2004 shapefiles available here
<-
Aus readOGR(dsn = "~/Documents/Programs/R/Maps/Rpackage_Geodata-coast/australia", layer = "cstauscd_r")
Remove coastline clutter from map
<- subset(Aus, FEAT_CODE != "sea")
Aus_coast plot(Aus_coast)
Plot map and points using ggplot2
<- ggplot(data = Aus_coast) +
g1 geom_polygon(aes(x = long, y = lat, group = group),
fill = NA,
color = "black") +
coord_fixed(1.3) + theme_classic()
<- g1 + geom_point(data = Sites, aes (
g2 x = Lon,
y = Lat,
colour = Locality,
stroke = 1.5
+
)) scale_colour_viridis_d(option = "plasma")
Customise colour of points
<- g1 + geom_point(data = Sites,
g3 aes (
x = Lon,
y = Lat,
colour = Locality,
stroke = 1.5
),colour = "#CC0000")
Make interactive plot with plotly
library(plotly)
<- ggplotly(g3)
gp gp
To save a html version of the interactive plot execute the following
::saveWidget(gp, "index.html")
htmlwidgets gp
Example workflow 2
Tutorial from Displaying Geo-Spatial Data with R by Martin Schweinberger
Install packages
# clean current workspace
rm(list = ls(all = T))
# set options
options(stringsAsFactors = F) # no automatic data transformation
options("scipen" = 100, "digits" = 4) # suppress math annotation
<- options(gvis.plot.tag = 'chart') # set gViz options
op # install libraries
install.packages(
c(
"RgoogleMaps",
"ggmap",
"mapproj",
"sf",
"dplyr",
"OpenStreetMap",
"devtools",
"DT"
)
)# install package from github
::install_github("dkahle/ggmap", ref = "tidyup") devtools
Load library and produce simple map of Australia
# load library
library(OpenStreetMap)
# extract map
<- openmap(c(-8, 110),
AustraliaMap c(-45, 160),
type = "osm",
# type = "esri",
# type = "nps",
minNumTiles = 7)
# plot map
plot(AustraliaMap)