wradlib.ipol.IpolBase

class wradlib.ipol.IpolBase(src, trg)

The base class for interpolation in N dimensions. Provides the basic interface for all other classes.

Parameters:
  • src (numpy.ndarray) – ndarray of floats, shape (npoints, ndims) Data point coordinates of the source points.

  • trg (numpy.ndarray) – ndarray of floats, shape (npoints, ndims) Data point coordinates of the target points.

__call__(vals)

Evaluate interpolator for values given at the source points.