We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55593a8 commit 1ab7569Copy full SHA for 1ab7569
doc/dask.rst
@@ -58,9 +58,9 @@ argument to :py:func:`~xarray.open_dataset` or using the
58
np.set_printoptions(precision=3, linewidth=100, threshold=100, edgeitems=3)
59
60
ds = xr.Dataset({'temperature': (('time', 'latitude', 'longitude'),
61
- np.random.randn(365, 180, 360)),
62
- 'time': pd.date_range('2015-01-01', periods=365),
63
- 'longitude': np.arange(360),
+ np.random.randn(30, 180, 180)),
+ 'time': pd.date_range('2015-01-01', periods=30),
+ 'longitude': np.arange(180),
64
'latitude': np.arange(89.5, -90.5, -1)})
65
ds.to_netcdf('example-data.nc')
66
0 commit comments