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

Method arrays

xarray/backends/zarr.py:890–897  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

888 )
889
890 def arrays(self) -> tuple[tuple[str, ZarrArray], ...]:
891 from zarr import Array as ZarrArray
892
893 return tuple(
894 (key, node)
895 for (key, node) in self.members.items()
896 if isinstance(node, ZarrArray)
897 )
898
899 @property
900 def ds(self):

Callers 9

get_dimensionsMethod · 0.95
datasets_1d_varsFunction · 0.80
array_strategy_fnMethod · 0.80
strategies.pyFile · 0.80
outer_array_indexersFunction · 0.80
vectorized_indexersFunction · 0.80

Calls 1

itemsMethod · 0.80

Tested by 3

datasets_1d_varsFunction · 0.64
array_strategy_fnMethod · 0.64