| Predict value at unsampled locations (continuous) | Ordinary / Universal Kriging | Best linear unbiased prediction; gives prediction variance; needs a fitted variogram + roughly stationary spatial structure |
| Same, but cheaper / nonlinear / many covariates | Random Forest / GBM + spatial features (coords, distances, neighborhood aggregates) | No variogram needed; handles nonlinearity; but no native uncertainty and can extrapolate poorly off-sample |
| Areal regression with spatial dependence in residuals | Spatial-lag (SAR) or spatial-error (SEM) model | Lag when the outcome itself spills over (Wy); error when only unobserved drivers are spatially correlated (use Moran's I on OLS residuals + Lagrange-multiplier tests to choose) |
| Coefficients that vary across space (non-stationarity) | GWR (Geographically Weighted Regression) or MGWR | Local regressions weighted by distance bandwidth; diagnostic + interpretable, not a strong predictor; bandwidth is the key hyperparameter |
| Detect clusters / hotspots | Getis-Ord Gi* (hot/cold spots), Local Moran's I (LISA) for spatial outliers, DBSCAN/HDBSCAN for density clusters | Gi* needs a distance band; DBSCAN needs eps in projected units; correct for multiple testing |
| Raster / satellite imagery classification or detection | CNN / ViT / U-Net / segmentation | Defer architecture, augmentation, mAP/IoU to /computer-vision; this skill scopes bands, resolution, tiling, and the spatial split |
| Trajectory mining (stops, next-location, similarity) | Stop/move segmentation, sequence models, trajectory clustering (e.g. DTW / Fréchet distance) | Resample to consistent step first; map-match to a road network when movement is road-bound |
| Outcome depends on graph/network structure | GNN on the spatial graph (nodes = locations, edges = adjacency/flow/road links) | Use when relational structure carries signal beyond coordinates; defer GNN family selection + scale strategy to /graph-ml-design, keep graph construction from geometry (edge definition, distance-decay weights) here |