Geostatistics & Interpolation
Purpose: interpolation that reports what it doesn't know. The difference
between a professional product and a pretty raster is the uncertainty
surface and an honest cross-validation — both are non-optional here.
Method selection
| Situation |
Method |
| Dense, smooth phenomenon, quick look |
IDW (report power parameter; test 1-3) |
| Physical phenomenon with spatial structure, need uncertainty |
Ordinary kriging (default professional choice) |
| Clear trend (elevation gradient, coastal effect) |
Universal kriging or regression kriging on covariates |
| Strong covariates available (DEM, land cover, distances) |
Regression kriging / random-forest residual kriging |
| Categorical target |
Indicator kriging |
| Honeycomb-free tessellation, no extrapolation wanted |
Natural neighbor |
IDW is a reasonable baseline but has no error model and bullseyes around
extremes; say so when delivering IDW-only products.
Exploratory phase (before any interpolation)
- Map the points with values; look for duplicates at identical coordinates
(average or offset them — kriging matrices go singular otherwise).
- Histogram + skew: strongly skewed variables (rainfall, concentrations)
usually want a log/normal-score transform; back-transform predictions
properly (bias correction for lognormal kriging).
- Trend check: regress value on x, y, and candidate covariates; visible
trend → universal/regression kriging path.
- Declustering if sampling is preferential (dense where values are high).
Variogram discipline
The variogram is a MODELING decision, not an auto-fit output:
import gstools as gs
bin_center, gamma = gs.vario_estimate((x, y), values, max_dist=dmax) # dmax ≈ half extent
model = gs.Exponential(dim=2)
model.fit_variogram(bin_center, gamma, nugget=True)
print(model) # report: nugget, sill, range — plus the fitted plot
- Max lag ≈ half the domain diameter; ≥30 pairs per bin.
- Check anisotropy with directional variograms (0/45/90/135°); geological
and meteorological fields are often anisotropic — fit an anisotropic
model rather than ignoring it.
- Interpret and report the parameters in words: nugget (measurement error +
micro-scale variance), range (correlation distance), sill. A nugget near
the sill means the data barely support interpolation — say that honestly.
- Never interpolate meaningfully beyond the variogram range from the
nearest sample; mask or flag those cells.
Kriging execution
from pykrige.ok import OrdinaryKriging
ok = OrdinaryKriging(x, y, values, variogram_model="exponential",
variogram_parameters={"sill": s, "range": r, "nugget": n},
coordinates_type="euclidean")
z, ss = ok.execute("grid", gridx, gridy) # ss = kriging VARIANCE — keep it!
- Work in a projected CRS (kriging distances in degrees are wrong except
with explicitly geographic-aware models).
- Deliver TWO rasters: prediction AND kriging standard deviation
(
np.sqrt(ss)). The uncertainty map drives where to sample next and
where not to trust the map.
- Search neighborhood: 16-32 nearest points typical; document it.
Validation — leave-one-out and beyond
- LOOCV for small n: report ME (bias ≈ 0?), RMSE, and standardized
RMSE (should be ≈ 1 if kriging variances are honest).
- For clustered samples, LOOCV flatters; also run spatial block CV
(canonical recipe:
ml-experiment-standards →
references/spatial-cv-protocol.md) and report both.
- Scatter plot observed vs predicted with 1:1 line; map the CV residuals —
spatially clustered residuals mean missing trend/covariate.
- Compare against the dumb baseline (global mean, IDW): kriging must earn
its complexity.
Reporting template
## Surface: <variable>
- n = <>, extent, CRS, transform applied: <log/none>
- Variogram: <model>, nugget/sill/range = <...>, anisotropy: <...>
- Method: <OK/UK/RK + covariates>
- LOOCV: ME <>, RMSE <>, RMSE_std <>; block-CV RMSE <>
- Uncertainty: kriging SD raster delivered; area beyond reliable range masked
Pitfalls checklist
- Auto-fitted variogram accepted without looking at the plot.
- Kriging in EPSG:4326 over large extents.
- Prediction raster delivered without its variance/SD companion.
- Log-kriging back-transformed by naive
exp() (bias!).
- Extrapolation far beyond the data hull presented at equal confidence.
- Duplicated station coordinates crashing or silently distorting the fit.
Execution contract
- Workflow: inspect sampling and transform needs; model spatial dependence; fit candidate surfaces; validate against simple baselines; quantify uncertainty; mask unsupported extrapolation.
- Decision rules: choose IDW or trend methods for transparent baselines, kriging when a defensible variogram exists, and regression kriging when covariates improve blocked validation.
- Verification protocol: examine variogram diagnostics, LOOCV and spatial block-CV residuals, baseline uplift, uncertainty calibration, and behavior beyond the sample hull.
- Failure modes: withhold a confident surface when sampling is too sparse, dependence is absent, duplicates dominate, distance units are invalid, or uncertainty is uncalibrated.
- Deliverables: prediction surface, uncertainty surface, variogram and parameters, validation table, sampling-support mask, and method limitations.
- Source freshness: consult the authoritative source registry before relying on package APIs or defaults and record the checked date.
1---2name: geostatistics-interpolation3description: Turn scattered point measurements into continuous surfaces with quantified uncertainty: variogram modeling, ordinary/universal/regression kriging, IDW, and spatially honest cross-validation. Use when unobserved values must be estimated from sparse samples such as stations, wells, or soundings. Trigger on "interpolate", "kriging", "variogram", or "IDW"; a named interpolation method is sufficient even when the requested surface is described informally as a heatmap. Do not use for point-density heatmaps, zonal aggregation, or raster resampling without value interpolation.4license: MIT5---67# Geostatistics & Interpolation89Purpose: interpolation that reports what it doesn't know. The difference10between a professional product and a pretty raster is the uncertainty11surface and an honest cross-validation — both are non-optional here.1213## Method selection1415| Situation | Method |16|---|---|17| Dense, smooth phenomenon, quick look | IDW (report power parameter; test 1-3) |18| Physical phenomenon with spatial structure, need uncertainty | **Ordinary kriging** (default professional choice) |19| Clear trend (elevation gradient, coastal effect) | Universal kriging or regression kriging on covariates |20| Strong covariates available (DEM, land cover, distances) | Regression kriging / random-forest residual kriging |21| Categorical target | Indicator kriging |22| Honeycomb-free tessellation, no extrapolation wanted | Natural neighbor |2324IDW is a reasonable baseline but has no error model and bullseyes around25extremes; say so when delivering IDW-only products.2627## Exploratory phase (before any interpolation)2829- Map the points with values; look for duplicates at identical coordinates30 (average or offset them — kriging matrices go singular otherwise).31- Histogram + skew: strongly skewed variables (rainfall, concentrations)32 usually want a log/normal-score transform; back-transform predictions33 properly (bias correction for lognormal kriging).34- Trend check: regress value on x, y, and candidate covariates; visible35 trend → universal/regression kriging path.36- Declustering if sampling is preferential (dense where values are high).3738## Variogram discipline3940The variogram is a MODELING decision, not an auto-fit output:4142```python43import gstools as gs4445bin_center, gamma = gs.vario_estimate((x, y), values, max_dist=dmax) # dmax ≈ half extent46model = gs.Exponential(dim=2)47model.fit_variogram(bin_center, gamma, nugget=True)48print(model) # report: nugget, sill, range — plus the fitted plot49```5051- Max lag ≈ half the domain diameter; ≥30 pairs per bin.52- Check anisotropy with directional variograms (0/45/90/135°); geological53 and meteorological fields are often anisotropic — fit an anisotropic54 model rather than ignoring it.55- Interpret and report the parameters in words: nugget (measurement error +56 micro-scale variance), range (correlation distance), sill. A nugget near57 the sill means the data barely support interpolation — say that honestly.58- Never interpolate meaningfully beyond the variogram range from the59 nearest sample; mask or flag those cells.6061## Kriging execution6263```python64from pykrige.ok import OrdinaryKriging6566ok = OrdinaryKriging(x, y, values, variogram_model="exponential",67 variogram_parameters={"sill": s, "range": r, "nugget": n},68 coordinates_type="euclidean")69z, ss = ok.execute("grid", gridx, gridy) # ss = kriging VARIANCE — keep it!70```7172- Work in a projected CRS (kriging distances in degrees are wrong except73 with explicitly geographic-aware models).74- Deliver TWO rasters: prediction AND kriging standard deviation75 (`np.sqrt(ss)`). The uncertainty map drives where to sample next and76 where not to trust the map.77- Search neighborhood: 16-32 nearest points typical; document it.7879## Validation — leave-one-out and beyond8081- **LOOCV** for small n: report ME (bias ≈ 0?), RMSE, and standardized82 RMSE (should be ≈ 1 if kriging variances are honest).83- For clustered samples, LOOCV flatters; also run spatial block CV84 (canonical recipe: `ml-experiment-standards` →85 `references/spatial-cv-protocol.md`) and report both.86- Scatter plot observed vs predicted with 1:1 line; map the CV residuals —87 spatially clustered residuals mean missing trend/covariate.88- Compare against the dumb baseline (global mean, IDW): kriging must earn89 its complexity.9091## Reporting template9293```94## Surface: <variable>95- n = <>, extent, CRS, transform applied: <log/none>96- Variogram: <model>, nugget/sill/range = <...>, anisotropy: <...>97- Method: <OK/UK/RK + covariates>98- LOOCV: ME <>, RMSE <>, RMSE_std <>; block-CV RMSE <>99- Uncertainty: kriging SD raster delivered; area beyond reliable range masked100```101102## Pitfalls checklist103104- Auto-fitted variogram accepted without looking at the plot.105- Kriging in EPSG:4326 over large extents.106- Prediction raster delivered without its variance/SD companion.107- Log-kriging back-transformed by naive `exp()` (bias!).108- Extrapolation far beyond the data hull presented at equal confidence.109- Duplicated station coordinates crashing or silently distorting the fit.110111## Execution contract112113- **Workflow:** inspect sampling and transform needs; model spatial dependence; fit candidate surfaces; validate against simple baselines; quantify uncertainty; mask unsupported extrapolation.114- **Decision rules:** choose IDW or trend methods for transparent baselines, kriging when a defensible variogram exists, and regression kriging when covariates improve blocked validation.115- **Verification protocol:** examine variogram diagnostics, LOOCV and spatial block-CV residuals, baseline uplift, uncertainty calibration, and behavior beyond the sample hull.116- **Failure modes:** withhold a confident surface when sampling is too sparse, dependence is absent, duplicates dominate, distance units are invalid, or uncertainty is uncalibrated.117- **Deliverables:** prediction surface, uncertainty surface, variogram and parameters, validation table, sampling-support mask, and method limitations.118- **Source freshness:** consult [the authoritative source registry](references/authoritative-sources.md) before relying on package APIs or defaults and record the checked date.