Skip to content

Commit

Permalink
reduce the size of example dataset in dask docs (#3187)
Browse files Browse the repository at this point in the history
  • Loading branch information
DocOtak authored and dcherian committed Aug 6, 2019
1 parent 55593a8 commit 1ab7569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/dask.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ argument to :py:func:`~xarray.open_dataset` or using the
np.set_printoptions(precision=3, linewidth=100, threshold=100, edgeitems=3)
ds = xr.Dataset({'temperature': (('time', 'latitude', 'longitude'),
np.random.randn(365, 180, 360)),
'time': pd.date_range('2015-01-01', periods=365),
'longitude': np.arange(360),
np.random.randn(30, 180, 180)),
'time': pd.date_range('2015-01-01', periods=30),
'longitude': np.arange(180),
'latitude': np.arange(89.5, -90.5, -1)})
ds.to_netcdf('example-data.nc')
Expand Down

0 comments on commit 1ab7569

Please sign in to comment.