17.28. Interpolation and contouring

Module contributed by Paolo Cavallini - Faunalia

ノート

This chapter shows how to use different backends to calculate different interpolations.

17.28.1. Interpolation

The project shows a gradient in rainfall, from south to north. Let’s use different methods for interpolation, all based on vector points.shp, parameter RAIN:

警告

set cell size to 500

  • GRASS ‣ v.surf.rst
  • SAGA ‣ Multilevel B-Spline Interpolation
  • SAGA ‣ Inverse Distance Weighted [Power: 4; Search range: Global]
  • GDAL ‣ Grid (Inverse Distance to a power) [Power:4]
  • GDAL ‣ Grid (Moving average) [Radius1&2: 50000]

Then measure variation among methods and correlate it with distance to points:

  • GRASS ‣ r.series [Unselect Propagate NULLs, Aggregate operation: stddev]
  • GRASS ‣ v.to.rast.value on points
  • GDAL ‣ Proximity
  • GRASS ‣ r.covar to show the correlation matrix (NB: results are in the log only); check the significance of the correlation e.g. with http://vassarstats.net/rsig.html.

Thus, areas far from points will have less accurate interpolation.

17.28.2. Contour

Various methods to draw contour lines [always step= 10] on the stddev raster:

  • GRASS ‣ r.contour.step
  • SAGA ‣ Contour lines from grid [NB: output shp is not valid, known bug]
  • GDAL ‣ Contour