Let’s say we want to calculate the average rainfall on a watershed, and we have data available for 7 stations, as shown in the figure below [Dingman, figure 4.26]:
There are a number of methods for calculating the average precipitation.
Dean and Snyder (1977) found that the exponent (for the distance d^{-b}) b = 2 yielded the best results in the Piedmont region of the southeastern United States, whereas Simanton and Osborn (1980) concluded from measurements in Arizona that b can range between 1 and 3 without significantly affecting the results.
The same equation of the Thiessen method can be used:
\langle P \rangle = \frac{\sum_i A_i P_i}{\sum_i A_i}
17.5 How it is actually done
Most often, Geographic Information System (GIS) software is used to analyze spatial data. Two of the most used programs are ArcGIS (proprietary) and QGIS (free).
A good discussion of the different methods can be found on Manuel Gimond’s website, Intro to GIS and Spatial Analysis.
Attention!
Don’t mix precision with accuracy. There are many ways of interpolating, just because a result seems detailed, it does not imply that it is accurate! See below three interpolation methods.
Below you can find a simple Python code that exemplifies some of the methods, producing the following figure: