We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922015e commit d6f13adCopy full SHA for d6f13ad
tests/test_interpolation.py
@@ -54,9 +54,9 @@ def create_interpolation_data_with_land():
54
tdim, zdim, ydim, xdim = 20, 5, 10, 10
55
ds = xr.Dataset(
56
{
57
- "U": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim))),
58
- "V": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim))),
59
- "W": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim))),
+ "U": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim)) / 1e3),
+ "V": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim)) / 1e3),
+ "W": (("time", "depth", "lat", "lon"), np.random.random((tdim, zdim, ydim, xdim)) / 1e3),
60
},
61
coords={
62
"time": np.linspace(0, tdim - 1, tdim),
0 commit comments