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

Method store_dataset

xarray/backends/common.py:493–500  ·  view source on GitHub ↗

in stores, variables are all variables AND coordinates in xarray.Dataset variables are variables NOT coordinates, so here we pass the whole dataset in instead of doing dataset.variables

(self, dataset)

Source from the content-addressed store, hash-verified

491 raise NotImplementedError()
492
493 def store_dataset(self, dataset):
494 """
495 in stores, variables are all variables AND coordinates
496 in xarray.Dataset variables are variables NOT coordinates,
497 so here we pass the whole dataset in instead of doing
498 dataset.variables
499 """
500 self.store(dataset, dataset.attrs)
501
502 def store(
503 self,

Callers

nothing calls this directly

Calls 1

storeMethod · 0.95

Tested by

no test coverage detected