| name | verde |
| description | Spatial data gridding and interpolation with a machine-learning style API. Process
geographic and Cartesian point data onto regular grids. Use when Claude needs to:
(1) Grid scattered spatial data onto regular grids, (2) Interpolate point data using
splines, linear, or cubic methods, (3) Process geographic coordinates with projections,
(4) Reduce large datasets using block averaging, (5) Remove polynomial trends from
spatial data, (6) Cross-validate gridding parameters, (7) Create processing pipelines
with Chain, (8) Grid vector data like GPS velocities.
|
| version | 1.0.0 |
| author | Geoscience Skills |
| license | MIT |
| tags | ["Gridding","Interpolation","Spatial Analysis","Fatiando","Cross-Validation","Verde","Spline","Block Reduction"] |
| dependencies | ["verde>=1.8.0","numpy","scipy"] |
| complements | ["harmonica","geostatspy","scikit-gstat","pyvista"] |
| workflow_role | analysis |
Verde - Spatial Data Gridding
Quick Reference
import verde as vd
spline = vd.Spline()
spline.fit(coordinates, values)
grid = spline.grid(spacing=0.1)
elevation = grid.elevation.values
grid.to_netcdf('output.nc')
Key Classes
| Class | Purpose |
|---|
Spline | Bi-harmonic spline interpolation (smooth, good extrapolation) |
Linear | Delaunay triangulation (fast, no extrapolation) |
Cubic | Cubic interpolation (medium smoothness) |
Chain | Pipeline of processing steps |
BlockReduce | Decimate data to block means/medians |
Trend | Polynomial trend fitting and removal |
Vector | Grid 2-component vector data |
Essential Operations
Grid Scattered Data
coordinates = (longitude, latitude)
values = elevation
spline = vd.Spline()
spline.fit(coordinates, values)
grid = spline.grid(spacing=0.1, data_names=['elevation'])
Project to Cartesian
import pyproj
projection = pyproj.Proj(proj='merc', lat_ts=data_lat.mean())
proj_coords = projection(longitude, latitude)
spline = vd.Spline()
spline.fit(proj_coords, values)
grid = spline.grid(spacing=1000)
Block Reduce Large Datasets
import numpy as np
reducer = vd.BlockReduce(reduction=np.median, spacing=0.1)
coords_reduced, values_reduced = reducer.filter(coordinates, values)
Remove Trend Before Gridding
trend = vd.Trend(degree=2)
trend.fit(coordinates, values)
residuals = values - trend.predict(coordinates)
Processing Pipeline
chain = vd.Chain([
('trend', vd.Trend(degree=1)),
('reduce', vd.BlockReduce(np.median, spacing=0.05)),
('spline', vd.Spline())
])
chain.fit(coordinates, values)
grid = chain.grid(spacing=0.01)
Cross-Validation
spline = vd.Spline()
scores = vd.cross_val_score(spline, coordinates, values, cv=5)
print(f"Mean R2: {scores.mean():.3f}")
Mask Far from Data
grid = spline.grid(spacing=0.1)
mask = vd.distance_mask(coordinates, maxdist=0.2, grid=grid)
grid_masked = grid.where(mask)
Grid Parameters
| Parameter | Description |
|---|
spacing | Grid cell size (same units as coordinates) |
region | (west, east, south, north) bounds |
shape | (n_north, n_east) grid dimensions |
adjust | 'spacing' or 'region' - which to adjust for exact fit |
Gridder Comparison
| Gridder | Speed | Smoothness | Extrapolation |
|---|
Spline | Medium | High | Good |
Linear | Fast | Low | None |
Cubic | Fast | Medium | None |
When to Use vs Alternatives
| Use Case | Tool | Why |
|---|
| General spatial gridding | Verde | ML-style API, pipelines, cross-validation |
| Basic 1D/2D interpolation | scipy.interpolate | Simpler API, no spatial focus |
| Potential field gridding | Harmonica | Equivalent sources designed for gravity/magnetics |
| Command-line batch gridding | GMT | Powerful CLI, good for automation scripts |
| Geostatistical interpolation | scikit-gstat / pykrige | Variogram-based with uncertainty |
| Very large datasets (10M+ pts) | GMT / GDAL | Better memory handling at scale |
| Vector data (GPS velocities) | Verde (Vector) | Built-in 2-component vector gridding |
| Trend removal + gridding | Verde (Chain) | Pipeline combines steps cleanly |
Choose Verde when: You need a Pythonic, scikit-learn-style API for gridding
scattered spatial data with built-in cross-validation, trend removal, and pipelines.
Ideal for exploratory analysis and reproducible workflows.
Choose scipy.interpolate when: You have a simple interpolation task without
spatial coordinates, projections, or need for validation.
Choose GMT when: You need command-line batch processing of large datasets or
are integrating with shell-based workflows and need surface or nearneighbor.
Common Workflows
Grid Scattered Spatial Data with Validation
Common Issues
| Issue | Solution |
|---|
| Poor extrapolation | Use distance_mask() to mask far from data |
| Slow with large data | Use BlockReduce first |
| Regional trends | Remove with Trend before gridding |
| Wrong spacing | Check coordinate units (degrees vs meters) |
References
Scripts