rnaturalearth tutorial
for v0.1.0
This vignette is an introduction to rnaturalearth, an R package to hold and facilitate interaction with natural earth vector map data. rnaturalearth is a data package designed to provide map data that can be visualised using other R packages.
Natural Earth is a public domain map dataset including vector country and other administrative boundaries.
rnaturalearth does two main things.
-
Contains pre-downloaded vector maps for :
- countries
ne_countries() - states
ne_states() - coastline
ne_coastline()
- countries
-
Has
ne_download()function to facilitate download of other vector and raster maps.
This vignette uses sp::plot as a simple, quick way to show how different data can be accessed.rnaturalearth is designed to provide data allowing creation of more elaborate maps in other visualisation packages (e.g. ggplot2, tmap and choroplethr).
Installation
CRAN version
install.packages("rnaturalearth")
Development version from GitHub
if (!require("devtools")) install.packages("devtools")
devtools::install_github("ropenscilabs/rnaturalearth")
library("rnaturalearth")
library("sp")
Usage
1. Maps in the package.
Pre-downloaded maps can be accessed with :
ne_countries()for country (admin-0) boundariesne_states()for boundaries within countries (admin-1)ne_coastline()for world coastline
World at small scale (low resolution)
sp::plot(ne_countries(type = 'countries', scale = 'small'))

Countries, UK undivided
sp::plot(ne_countries(country = 'united kingdom', type='countries'))

map_units, UK divided into England, Scotland, Wales and Northern Ireland
sp::plot(ne_countries(country = 'united kingdom', type='map_units'))

Countries, small scale
sp::plot(ne_countries(country = 'united kingdom', scale = 'small'))

Countries, medium scale
sp::plot(ne_countries(country = 'united kingdom', scale = 'medium'))

Coastline of the world subsetting of coastline is not possible because the Natural Earth data are not attributed in that way
sp::plot(ne_coastline())

2. Downloading other Natural Earth vectors with ne_download().
Each Natural Earth dataset is characterised on the website according to scale, type and category. rnaturalearth allows you to specify scale, type and category and will construct the url and download the corresponding file.
# lakes
lakes110 <- ne_download(scale = 110, type = 'lakes', category = 'physical')
sp::plot(lakes110, col = 'blue')
# rivers
rivers110 <- ne_download(scale = 110, type = 'rivers_lake_centerlines', category = 'physical')
sp::plot(rivers110, col = 'blue')
Citing
Andy South (2017). rnaturalearth: World Map Data from Natural Earth. R package version 0.1.0. https://CRAN.R-project.org/package=rnaturalearth
License and bugs
- License: MIT
- Report bugs at our GitHub repo for rnaturalearth
