Introduction to geostatistics with R

April 2023. Online. Instructor: Guillaume Larocque (glaroc@gmail.com).

Click here to download the zip file containing the scripts and the datasets that will be used during the workshop.

Please extract this zip archive to an easily accessible folder on your computer.

Books

Papers of interest

R packages

  • Gstat package - Gstat R package.
  • geoR package geoR - Another package for geostatistics in R.
  • rgeoda - R package for spatial data analysis.
  • qgisprocess - Package that allows you to run QGIS scripts within R.
  • gdalcubes - R Package for working with spatial-temporal raster data in the form of cubes. Particularly useful to access STAC catalog data in combination with the rstac package.

Educational software

EZ-Kriging Small Windows software that facilitates understanding of kriging equations.

Courses

Visualisation et analyse de données spatiales avec R. . Course offered at Teluq by Elise Filotas. The course material can be found here.

Digitize a polygon defining the boundary of your study site

You can digitize the boundary of your study site from a Google Satellite layer by following the following steps:

  1. Open QGIS.
  2. Install and activate the QuickMapServices Plugin=
  3. Add a Google Satellite layer by using the QuickMapServices extension (Web/QuickMapServices). You might need to enable additional providers in the Plugin settings
  4. Note that the CRS of the canvas is now WGS 84 / Pseudo mercator and units are in meters.
  5. If you have other vector layer that can help you define the limits of your study area, you can add them to the canvas by clicking on the 'add vector layer' icon.
  6. Digitize the zone defining your study area. You first need to add a new polygon shapefile layer under Layer>New>New Shapefile layer. Specify the proper CRS depending on the extent of your study area and specify a name for your layer. It is always preferable to work with a reference system that uses meters as units, such as UTM (medium extent), MTM (small extent in Quebec) or Lambert (large extent). Refrain from using a latitude/longitude system.
  7. Activate Edit mote (Layer>Toggle editing) and digitize the polygon(s) by clicking on the icon and specify '1' as the ID.

Convert the polygon to raster format

  1. Find the Rasterize function under Raster>Conversion. Specify the polygon that you just created as the input layer, and choose a file name with a .tif extension as the output file. Choose 'Raster resolution in map units per pixel'. You then need to choose a resolution in the reference system's units used for the input polygon. For example, if you specified UTM as the CRS of the polygon, the resolution will be specified in meters. Choose a resolution that will yield a raster with a manageable size, with a maximum of a few hundred lines and columns (up to 2000-3000max). For example, if your study area is 2km by 3 km, you can specify 5 m. as the resolution, which will yield a raster of 400 pixels by 600 pixels.
  2. After you have clicked on OK, this raster will be saved on your computer as a .tif file. All pixels within the study area will have a value of 1, and pixels outside will have a value of 0.

Import the mask in R

  1. You can now import the mask in R:
mask<-read_stars(file.choose())

and choose the raster .tif file.

Then, you can do

mask[mask==0]=NA

to change all the zero values to NA (nulls).

Your mask is now ready to use!