@@ -516,12 +516,12 @@ def open_mfdataset(paths, chunks=None, concat_dim=_CONCAT_DIM_DEFAULT,
516
516
compat : {'identical', 'equals', 'broadcast_equals', 'no_conflicts'}, optional
517
517
String indicating how to compare variables of the same name for
518
518
potential conflicts when merging:
519
- * 'broadcast_equals': all values must be equal when variables are
519
+ - 'broadcast_equals': all values must be equal when variables are
520
520
broadcast against each other to ensure common dimensions.
521
- * 'equals': all values and dimensions must be the same.
522
- * 'identical': all values, dimensions and attributes must be the
521
+ - 'equals': all values and dimensions must be the same.
522
+ - 'identical': all values, dimensions and attributes must be the
523
523
same.
524
- * 'no_conflicts': only values which are not null in both datasets
524
+ - 'no_conflicts': only values which are not null in both datasets
525
525
must be equal. The returned dataset then contains the combination
526
526
of all non-null values.
527
527
preprocess : callable, optional
@@ -541,34 +541,34 @@ def open_mfdataset(paths, chunks=None, concat_dim=_CONCAT_DIM_DEFAULT,
541
541
data_vars : {'minimal', 'different', 'all' or list of str}, optional
542
542
These data variables will be concatenated together:
543
543
544
- * 'minimal': Only data variables in which the dimension already
544
+ - 'minimal': Only data variables in which the dimension already
545
545
appears are included.
546
- * 'different': Data variables which are not equal (ignoring
546
+ - 'different': Data variables which are not equal (ignoring
547
547
attributes) across all datasets are also concatenated (as well as
548
548
all for which dimension already appears). Beware: this option may
549
549
load the data payload of data variables into memory if they are not
550
550
already loaded.
551
- * 'all': All data variables will be concatenated.
552
- * list of str: The listed data variables will be concatenated, in
551
+ - 'all': All data variables will be concatenated.
552
+ - list of str: The listed data variables will be concatenated, in
553
553
addition to the 'minimal' data variables.
554
554
coords : {'minimal', 'different', 'all' o list of str}, optional
555
555
These coordinate variables will be concatenated together:
556
556
557
- * 'minimal': Only coordinates in which the dimension already appears
557
+ - 'minimal': Only coordinates in which the dimension already appears
558
558
are included.
559
- * 'different': Coordinates which are not equal (ignoring attributes)
559
+ - 'different': Coordinates which are not equal (ignoring attributes)
560
560
across all datasets are also concatenated (as well as all for which
561
561
dimension already appears). Beware: this option may load the data
562
562
payload of coordinate variables into memory if they are not already
563
563
loaded.
564
- * 'all': All coordinate variables will be concatenated, except
564
+ - 'all': All coordinate variables will be concatenated, except
565
565
those corresponding to other dimensions.
566
- * list of str: The listed coordinate variables will be concatenated,
566
+ - list of str: The listed coordinate variables will be concatenated,
567
567
in addition the 'minimal' coordinates.
568
568
parallel : bool, optional
569
569
If True, the open and preprocess steps of this function will be
570
570
performed in parallel using ``dask.delayed``. Default is False.
571
- * *kwargs : optional
571
+ \*\ *kwargs : optional
572
572
Additional arguments passed on to :py:func:`xarray.open_dataset`.
573
573
574
574
Returns
@@ -813,14 +813,14 @@ def save_mfdataset(datasets, paths, mode='w', format=None, groups=None,
813
813
814
814
File format for the resulting netCDF file:
815
815
816
- * NETCDF4: Data is stored in an HDF5 file, using netCDF4 API
816
+ - NETCDF4: Data is stored in an HDF5 file, using netCDF4 API
817
817
features.
818
- * NETCDF4_CLASSIC: Data is stored in an HDF5 file, using only
818
+ - NETCDF4_CLASSIC: Data is stored in an HDF5 file, using only
819
819
netCDF 3 compatible API features.
820
- * NETCDF3_64BIT: 64-bit offset version of the netCDF 3 file format,
820
+ - NETCDF3_64BIT: 64-bit offset version of the netCDF 3 file format,
821
821
which fully supports 2+ GB files, but is only compatible with
822
822
clients linked against netCDF version 3.6.0 or later.
823
- * NETCDF3_CLASSIC: The classic netCDF 3 file format. It does not
823
+ - NETCDF3_CLASSIC: The classic netCDF 3 file format. It does not
824
824
handle 2+ GB files very well.
825
825
826
826
All formats are supported by the netCDF4-python library.
0 commit comments