@@ -116,12 +116,13 @@ Enhancements
116
116
- Consolidated the functionality of ``dumps `` (writing a dataset to a netCDF3
117
117
bytestring) into :py:meth: `~xray.Dataset.to_netcdf ` (:issue: `333 `).
118
118
- :py:meth: `~xray.Dataset.to_netcdf ` now supports writing to groups in netCDF4
119
- files (:issue: `333 `). It also now has a full docstring -- you should read it!
119
+ files (:issue: `333 `). It also finally has a full docstring -- you should read
120
+ it!
120
121
- :py:func: `~xray.open_dataset ` and :py:meth: `~xray.Dataset.to_netcdf ` now
121
122
work on netCDF4 files when netcdf4-python is not installed as long as scipy
122
123
is available (:issue: `333 `).
123
- - The new :py:meth: `xray. Dataset.drop <Dataset.drop> ` and
124
- :py:meth: `xray. DataArray.drop <DataArray.drop> ` methods makes it easy to drop
124
+ - The new :py:meth: `Dataset.drop <xray. Dataset.drop> ` and
125
+ :py:meth: `DataArray.drop <xray. DataArray.drop> ` methods makes it easy to drop
125
126
explicitly listed variables or index labels:
126
127
127
128
.. ipython :: python
@@ -134,13 +135,13 @@ Enhancements
134
135
arr = xray.DataArray([1 , 2 , 3 ], coords = [(' x' , list (' abc' ))])
135
136
arr.drop([' a' , ' c' ], dim = ' x' )
136
137
137
- - The :py:meth: `~xray.Dataset.broadcast_equals ` has been added to correspond to
138
+ - :py:meth: `~xray.Dataset.broadcast_equals ` has been added to correspond to
138
139
the new ``compat `` option.
139
140
- Long attributes are now truncated at 500 characters when printing a dataset
140
141
(:issue: `337 `). This should make things more convenient for working with
141
142
datasets interactively.
142
- - Added a new ` documentation example < examples/ monthly- means>`_ on calculating
143
- properly weighted seasonal means. Thanks Joe Hamman!
143
+ - Added a new documentation example, :ref: ` monthly means example `. Thanks Joe
144
+ Hamman!
144
145
145
146
Bug fixes
146
147
~~~~~~~~~
0 commit comments