-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expose top-level xarray.indexes in __init__ #10435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,20 @@ | |
|
||
""" | ||
|
||
from xarray.core.coordinate_transform import CoordinateTransform | ||
from xarray.core.indexes import ( | ||
CoordinateTransformIndex, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @benbovy does this seem OK to you? Would be good for SciPy... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes! We should also expose There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good idea. I put it under |
||
Index, | ||
PandasIndex, | ||
PandasMultiIndex, | ||
) | ||
from xarray.indexes.range_index import RangeIndex | ||
|
||
__all__ = ["Index", "PandasIndex", "PandasMultiIndex", "RangeIndex"] | ||
__all__ = [ | ||
"CoordinateTransform", | ||
"CoordinateTransformIndex", | ||
"Index", | ||
"PandasIndex", | ||
"PandasMultiIndex", | ||
"RangeIndex", | ||
] |
Uh oh!
There was an error while loading. Please reload this page.