You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
Improve error message for missing coordinate index (pydata#9370)
Add flaky to TestNetCDF4ViaDaskData (pydata#9373)
Make chunk manager an option in `set_options` (pydata#9362)
Revise (pydata#9371)
Remove duplicate word from docs (pydata#9367)
Adding open_groups to BackendEntryPointEngine, NetCDF4BackendEntrypoint, and H5netcdfBackendEntrypoint (pydata#9243)
Copy file name to clipboardExpand all lines: doc/user-guide/duckarrays.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,7 @@ Whilst the features above allow many numpy-like array libraries to be used prett
215
215
makes sense to use an interfacing package to make certain tasks easier.
216
216
217
217
For example the `pint-xarray package <https://pint-xarray.readthedocs.io>`_ offers a custom ``.pint`` accessor (see :ref:`internals.accessors`) which provides
218
-
convenient access to information stored within the wrapped array (e.g. ``.units`` and ``.magnitude``), and makes makes
218
+
convenient access to information stored within the wrapped array (e.g. ``.units`` and ``.magnitude``), and makes
219
219
creating wrapped pint arrays (and especially xarray-wrapping-pint-wrapping-dask arrays) simpler for the user.
220
220
221
221
We maintain a list of libraries extending ``xarray`` to make working with particular wrapped duck arrays
Open and decode a file or file-like object, creating a dictionary containing one xarray Dataset for each group in the file.
853
+
Useful for an HDF file ("netcdf4" or "h5netcdf") containing many groups that are not alignable with their parents
854
+
and cannot be opened directly with ``open_datatree``. It is encouraged to use this function to inspect your data,
855
+
then make the necessary changes to make the structure coercible to a `DataTree` object before calling `DataTree.from_dict()` and proceeding with your analysis.
856
+
857
+
Parameters
858
+
----------
859
+
filename_or_obj : str, Path, file-like, or DataStore
860
+
Strings and Path objects are interpreted as a path to a netCDF file.
861
+
engine : str, optional
862
+
Xarray backend engine to use. Valid options include `{"netcdf4", "h5netcdf"}`.
863
+
**kwargs : dict
864
+
Additional keyword arguments passed to :py:func:`~xarray.open_dataset` for each group.
0 commit comments