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
Is your feature request related to a problem? Please describe.
Feature request: It seems that it should be possible to append to netcdf4 stores along the unlimited dimensions. Is there an example of this?
Describe the solution you'd like
I would like the following code to be valid:
fromxarray.tests.test_datasetimportcreate_append_test_datads, ds_to_append, ds_with_new_var=create_append_test_data()
filename='test_dataset.nc'# Choose any one of# engine : {'netcdf4', 'scipy', 'h5netcdf'}engine='netcdf4'ds.to_netcdf(filename, mode='w', unlimited_dims=['time'], engine=engine)
ds_to_append.to_netcdf(filename, mode='a', unlimited_dims=['time'], engine=engine)
Describe alternatives you've considered
I guess you could use zarr, but the fact that it creates multiple files is a problem.
Additional context
xarray version: 0.16.0
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Feature request: It seems that it should be possible to append to netcdf4 stores along the unlimited dimensions. Is there an example of this?
Describe the solution you'd like
I would like the following code to be valid:
Describe alternatives you've considered
I guess you could use zarr, but the fact that it creates multiple files is a problem.
Additional context
xarray version: 0.16.0
The text was updated successfully, but these errors were encountered: