Interpolation#

This module provides different interpolation techniques for spatial data.

Interpolation Methods#

griddata(*data, value, target_grid, **kwargs)

Interpolate values from a Pandas DataFrame containing x,y,value for a set of points onto a target grid using SciPy's griddata function.

rbf(*data, value, target_grid, **kwargs)

Interpolate values from a Pandas DataFrame containing x,y,value for a set of points onto a target grid using Radial Basis Function (RBF) interpolation.

tin_surface(*data, value, target_grid)

Interpolate a TIN (Triangulated Irregular Network) surface from a Pandas DataFrame containing x,y,value for a set of points using a target grid.