wradlib.ipol.Linear.__call__#
- Linear.__call__(vals, *, fill_value=nan)[source]#
Evaluate interpolator for values given at the source points.
You can interpolate multiple datasets of source values (
vals
) at once: thevals
array should have the shape (number of source points, number of source datasets). If you want to interpolate only one set of source values,vals
can have the shape (number of source points, 1) or just (number of source points,) - which is a flat/1-D array. The output will have the same number of dimensions asvals
, i.e. it will be a flat 1-D array in casevals
is a 1-D array.- Parameters
vals (
numpy.ndarray
) – ndarray of float, shape (numsourcepoints, …) Values at the source points which to interpolatefill_value (
float
) – is needed if linear interpolation fails; defaults to np.nan
- Returns
output (
numpy.ndarray
) – ndarray of float with shape (numtargetpoints,…)