Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ncdata
:alt: ncdata logo

NetCDF data interoperability.
TEST VERSION

Represents generic netcdf data as Python objects, equivalent to actual data
files, but independent and freely modifiable.
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_xarray_load_and_save_equivalence.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_save_direct_vs_viancdata(standard_testcase, tmp_path):

# Re-save from Xarray
temp_direct_savepath = tmp_path / "temp_save_xarray.nc"
xrds.to_netcdf(temp_direct_savepath)
xrds.to_netcdf(temp_direct_savepath, engine="netcdf4")
# Save same, via ncdata
temp_ncdata_savepath = tmp_path / "temp_save_xarray_via_ncdata.nc"
ncds_fromxr = from_xarray(xrds)
Expand Down
Loading