Closed TomNicholas closed 1 month ago
For some reason I always thought that Variable and Index were private xarray internals, but they are actually available in the top-level namespace!
Variable
Index
Now the only things we import from xarray that aren't at the top level are
from xarray.backends import AbstractDataStore, BackendArray from xarray.core.indexes import PandasIndex
which are both semi-public anyway.
For some reason I always thought that
Variable
andIndex
were private xarray internals, but they are actually available in the top-level namespace!Now the only things we import from xarray that aren't at the top level are
which are both semi-public anyway.