@@ -145,11 +145,11 @@ def open_dataset(filename_or_obj, group=None, decode_cf=True,
145
145
Parameters
146
146
----------
147
147
filename_or_obj : str, Path, file or xarray.backends.*DataStore
148
- Strings and Path objects are interpreted as a path to a netCDF file oran OpenDAP URL
149
- and opened with python-netCDF4, unless the filename ends with .gz, in
150
- which case the file is gunzipped and opened with scipy.io.netcdf (only
151
- netCDF3 supported). File-like objects are opened with scipy.io.netcdf
152
- (only netCDF3 supported).
148
+ Strings and Path objects are interpreted as a path to a netCDF file
149
+ oran OpenDAP URL and opened with python-netCDF4, unless the filename
150
+ ends with .gz, in which case the file is gunzipped and opened with
151
+ scipy.io.netcdf (only netCDF3 supported). File-like objects are opened
152
+ with scipy.io.netcdf (only netCDF3 supported).
153
153
group : str, optional
154
154
Path to the netCDF4 group in the given file to open (only works for
155
155
netCDF4 files).
@@ -325,12 +325,12 @@ def open_dataarray(*args, **kwargs):
325
325
326
326
Parameters
327
327
----------
328
- filename_or_obj : str, file or xarray.backends.*DataStore
329
- Strings are interpreted as a path to a netCDF file or an OpenDAP URL
330
- and opened with python-netCDF4, unless the filename ends with .gz, in
331
- which case the file is gunzipped and opened with scipy.io.netcdf (only
332
- netCDF3 supported). File-like objects are opened with scipy.io.netcdf
333
- (only netCDF3 supported).
328
+ filename_or_obj : str, Path, file or xarray.backends.*DataStore
329
+ Strings and Paths are interpreted as a path to a netCDF file or an
330
+ OpenDAP URL and opened with python-netCDF4, unless the filename ends
331
+ with .gz, in which case the file is gunzipped and opened with
332
+ scipy.io.netcdf (only netCDF3 supported). File-like objects are opened
333
+ with scipy.io.netcdf (only netCDF3 supported).
334
334
group : str, optional
335
335
Path to the netCDF4 group in the given file to open (only works for
336
336
netCDF4 files).
@@ -445,7 +445,8 @@ def open_mfdataset(paths, chunks=None, concat_dim=_CONCAT_DIM_DEFAULT,
445
445
----------
446
446
paths : str or sequence
447
447
Either a string glob in the form "path/to/my/files/*.nc" or an explicit
448
- list of files to open. Paths can be given as strings or as pathlib Paths.
448
+ list of files to open. Paths can be given as strings or as pathlib
449
+ Paths.
449
450
chunks : int or dict, optional
450
451
Dictionary with keys given by dimension names and values given by chunk
451
452
sizes. In general, these should divide the dimensions of each dataset.
0 commit comments