1 Introduction
1.1 Spatial in R : History and evolutions
Historically, 4 packages make it possible to import, manipulate and transform spatial data:
- The package
rgdal
(Bivand, Keitt, and Rowlingson 2022) which is an interface between R and the GDAL (GDAL/OGR contributors, n.d.) and PROJ (PROJ contributors 2021) libraries allow you to import and export spatial data (shapefiles for example) and also to manage cartographic projections
- The package
sp
(E. J. Pebesma and Bivand 2005) provides class and methods for vector spatial data in R. It allows displaying background maps, inspectiong an attribute table etc.
- The package
rgeos
(Bivand and Rundel 2021) gives access to the GEOS spatial operations library and therefore makes classic GIS operations available: calculation of surfaces or perimeters, calculation of distances, spatial aggregations, buffer zones, intersections, etc.
- The package
raster
(Hijmans 2022a) is dedicated to the import, manipulation and modeling of raster data.
Today, the main developments concerning vector data have moved away from the old 3 (sp
, rgdal
, rgeos
) to rely mainly on the package sf
((E. Pebesma 2018a), (E. Pebesma 2018b)). In this manual we will rely exclusively on this package to manipulate vector data.
The packages stars
(E. Pebesma 2021) and terra
(Hijmans 2022b) come to replace the package raster
for processing raster data. We have chosen to use the package here terra
for its proximity to the raster
.
1.2 The package sf
The package
sf
was released in late 2016 by Edzer Pebesma (also author of sp
). Its goal is to combine the feature of sp
, rgeos
and rgdal
in a single, more ergonomic package. This package offers simple objects (following the simple feature standard) which are easier to manipulate. Particular attention has been paid to the compatibility of the package with the pipe syntax and the operators of the tidyverse
.
sf
directly uses the GDAL, GEOS and PROJ libraries.
1.2.1 Format of spatial objects sf
Objectssf
are objects in data.frame
which one of the columns contains geometries. This column is the class of sfc (simple feature column) and each individual of the column is a sfg (simple feature geometry). This format is very practical insofa as the data and the geometries are intrinsically linked in the same object.
A benchmark of vector processing libraries is available here.
1.3 Package mapsf
The free R software spatial ecosystem is rich, dynamic and mature and several packages allow to import, process and represent spatial data. The package mapsf
(Giraud 2022) relies on this ecosystem to integrate the creation of quality thematic maps into processing chains with R.
Other packages can be used to make thematic maps. The package ggplot2
(Wickham 2016), in association with the package ggspatial
(Dunnington 2021), allows for example to display spatial objects and to make simple thematic maps. The package tmap
(Tennekes 2018) is dedicated to the creation of thematic maps, it uses a syntax close to that of ggplot2
(sequence of instructions combined with the ‘+’ sign). Documentation and tutorials for using these two packages are readily available on the web.
Here, we will mainly use the package mapsf
whose functionalities are quite complete and the handling rather simple. In addition, the package is relatively light.
mapsf
allows you to create most of the types of map usually used in statistical cartography (choropleth maps, typologies, proportional or graduated symbols, etc.). For each type of map, several parameters are used to customize the cartographic representation. These parameters are the same as those found in the usual GIS or cartography software (for example, the choice of discretizations and color palettes, the modification of the size of the symbols or the customization of the legends). Associated with the data representation functions, other functions are dedicated to cartographic dressing (themes or graphic charters, legends, scales, orientation arrows, title, credits, annotations, etc.), the creation of boxes or the exporting maps.
mapsf
is the successor of cartography
(Giraud and Lambert 2016), it offers the same main functionalities while being lighter and more ergonomic.
To use this package several sources can be consulted:
The package documentation accessible on the internet or directly in R (
?mapsf
),A cheat sheet,
The vignettes associated with the package show sample scripts,
The R Geomatics blog which provides resources and examples related to the package and more generally to the R spatial ecosystem.
1.4 The package terra
The package
terra
was release in early 2020 by Robert J. Hijmans (also author of raster
). Its objective is to propose methods of treatment and analysis of raster data. This package is very similar to the package raster
; but it has more features, it’s easier to use, and it’s faster.
A benchmark of raster processing libraries is available here.