We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af7e2d5 commit fba692eCopy full SHA for fba692e
1 file changed
verde/utils.py
@@ -27,14 +27,15 @@
27
except ImportError:
28
numba = None
29
30
+import verde.KNeighbors
31
+
32
from .base.utils import (
33
check_coordinates,
34
check_data,
35
check_data_names,
36
check_extra_coords_names,
37
n_1d_arrays,
38
)
-from .neighbors import KNeighbors
39
40
41
def dispatch(function, delayed=False, client=None):
@@ -886,7 +887,7 @@ def fill_missing(
886
887
grid = grid.copy()
888
889
if interpolator is None:
- interpolator = KNeighbors(k=5)
890
+ interpolator = verde.KNeighbors(k=5)
891
892
# if input was a datarray turn into dataset
893
if isinstance(grid, xr.DataArray):
0 commit comments