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

Method get_variables

xarray/backends/h5netcdf_.py:332–335  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

330 return Variable(dimensions, data, attrs, encoding)
331
332 def get_variables(self):
333 return FrozenDict(
334 (k, self.open_store_variable(k, v)) for k, v in self.ds.variables.items()
335 )
336
337 def get_attrs(self):
338 return FrozenDict(_read_attributes(self.ds))

Callers

nothing calls this directly

Calls 3

open_store_variableMethod · 0.95
FrozenDictFunction · 0.90
itemsMethod · 0.80

Tested by

no test coverage detected