MCPcopy Index your code
hub / github.com/pydata/xarray / dump_to_store

Method dump_to_store

xarray/core/dataset.py:1965–1971  ·  view source on GitHub ↗

Store dataset contents to a backends.*DataStore object.

(self, store: AbstractDataStore, **kwargs)

Source from the content-addressed store, hash-verified

1963 return obj
1964
1965 def dump_to_store(self, store: AbstractDataStore, **kwargs) -> None:
1966 """Store dataset contents to a backends.*DataStore object."""
1967 from xarray.backends.writers import dump_to_store
1968
1969 # TODO: rename and/or cleanup this method to make it more consistent
1970 # with to_netcdf()
1971 dump_to_store(self, store, **kwargs)
1972
1973 # path=None writes to bytes
1974 @overload

Callers 8

test_dask_is_lazyMethod · 0.80
test_lazy_loadMethod · 0.80
test_write_storeMethod · 0.80
test_hidden_zarr_keysMethod · 0.80
test_dimension_namesMethod · 0.80
roundtripMethod · 0.80

Calls 1

dump_to_storeFunction · 0.90

Tested by 8

test_dask_is_lazyMethod · 0.64
test_lazy_loadMethod · 0.64
test_write_storeMethod · 0.64
test_hidden_zarr_keysMethod · 0.64
test_dimension_namesMethod · 0.64
roundtripMethod · 0.64