-
Notifications
You must be signed in to change notification settings - Fork 281
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
BUG: fix ds.all_data() for spherical AMReX datasets #5025
base: main
Are you sure you want to change the base?
Conversation
For future reference, the datasets are registered at yt-project/website#129 |
very nice. Let me add this to the 4.4.0 milestone in case we can squeeze it in before the release is unblocked. |
`ds.index.level_dds` was being overwritten in `_parse_index()`, which breaks the `all_data()` region selector. This commit instead updates `domain_right_edge` in `_parse_header_file()`, like we do for cylindrical datasets.
01b2ffa
to
5b6763e
Compare
I've tested this an it fixes the problem we were having with 2D r-theta |
@yt-fido test this please |
What's the status of this PR? The failing tests are just from the new datasets not being on the website yet. |
@yt-fido test this please |
Add datasets needed for testing yt-project/yt#5025
PR Summary
ds.index.level_dds
was being overwritten in_parse_index()
, which breaks theall_data()
region selector. This PR instead updatesdomain_right_edge
in_parse_header_file()
, like we do for cylindrical datasets.PR Checklist