Introduction to geostatistics with R
April 2023. Online. Instructor: Guillaume Larocque (glaroc@gmail.com).
Presentation
R Code
Please extract this zip archive to an easily accessible folder on your computer.
Ressources
Books
- Spatial Data Science - With applications in R. - Provides a good overview of spatial statistical tools in R. Contains a good chapter on geostatistics. The online version of the book can be found here
- Geostatistics for Natural Resources Evaluation, Pierre Goovaerts. - Very good book, which provides a more in-depth coverage of geostatistical theory.
- Georges Matheron - The theory of regionalized variables and its application (PDF). - Original text estbalishing the basic foundations of geostatistics.
- Analyses spatiales sous R - Document préparé par Nicolas Casajus pour un cours offert à l'UQAR à l'hiver 2013.
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.
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.
How to create a mask in QGIS
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:
- Open QGIS.
- Install and activate the QuickMapServices Plugin=
- Add a Google Satellite layer by using the QuickMapServices extension (Web/QuickMapServices). You might need to enable additional providers in the Plugin settings
- Note that the CRS of the canvas is now WGS 84 / Pseudo mercator and units are in meters.
- 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.
- 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.
Convert the polygon to raster format
- 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.
- 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
- 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!