gridding¶
Provides tools for interpolating irregularly spaced data onto a regular grid.
Deprecated in 0.9 in favor of the more general interpolate
subpackage.
Functions
interpolate (x, y, z[, interp_type, hres, …]) |
Interpolate given (x,y), observation (z) pairs to a grid based on given parameters. |
inverse_distance (xp, yp, variable, grid_x, …) |
Generate an inverse distance interpolation of the given points to a regular grid. |
natural_neighbor (xp, yp, variable, grid_x, …) |
Generate a natural neighbor interpolation of the given points to a regular grid. |
remove_nan_observations (x, y, z) |
Remove all x, y, and z where z is nan. |
remove_observations_below_value (x, y, z[, val]) |
Remove all x, y, and z where z is less than val. |
remove_repeat_coordinates (x, y, z) |
Remove all x, y, and z where (x,y) is repeated and keep the first occurrence only. |