-
Notifications
You must be signed in to change notification settings - Fork 82
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
Enable vertical linear transform for spatially-varying target vertical coordinate #642
Conversation
- Insert autoparse_metadata=False into Grid() to avoid error messages - Correct dictionary keys for pangeo cloud data library - Remove non-existing xc coordinate from Grid object to avoid existing ValueError - Insert a .squeeze() for plotting AMOC to avoid error
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
target_dim
as parameter to .transform()
Just realized that there is overlap between this PR and PR #627 |
Hey @NoraLoose, thank you so much for working on this and sorry for the delay. I think I got the CI issues #644 and #648 under control now. Once #649 is merged can you try to rebase this one?
Feel free to absorb and close this if needed. |
- Adapt construction of test data to multi-dimensional data - Add linear multidimensional test cases to dictionary - Add new test that tests that transforming onto spatially varying vertical target coordinate works as expected
Also I have restructured the linting and setup in #650, please let me know if it is ok to merge this ahead of time. I think this should not cause too big of a conflict? |
Transforming onto a spatially varying vertical coordinate (e.g., terrain-following) works with the linear interpolation method, see newly added tests and the example in the documentation. I tested this also for the conservative interpolation method by adding the following test case to the
However, it fails because of this line: Line 160 in 2de04bf
|
@jbusecke I'm not sure when I have time to look into generalizing the conservative method to multiple dimensions. We could merge this PR, and open a feature request issue? If we do this, should we include more warnings (where?) to clarify that the conservative method is not yet supported for multi-dimensional vertical target coordinates? |
Thank you so much @NoraLoose! This is awesome. I am pretty busy today, but will try to take some time next week to review and maybe also enable conservative interpolation. |
@jbusecke I would like to use the new functionality of this PR in a downstream package (roms-tools). Do you think we can merge this soon, and leave the conservative method stuff for a future PR? |
@jbusecke @TomNicholas I was hoping to get this PR merged because a downstream package (roms-tools) is waiting on this new functionality. Any ideas for who could review this PR if you guys are too busy? |
@NoraLoose I think at this point it's either @jbusecke or you just take over and use your own best judgement. This part of the code (the whole transform module) was @jbusecke 's work anyway. I will add you as a maintainer now regardless. |
@hdrake This PR is ready for review. It enables regridding onto a spatially varying vertical coordinate, such as a terrain-following coordinate. I've added tests and included an example in the documentation, along with fixing some pre-existing issues in the The only remaining task is to enable conservative vertical regridding for the spatially varying coordinate, in addition to the linear method. I suggest opening an issue to track that feature, but merging this PR as is. Let me know if you'd like to review or have any thoughts! |
@NoraLoose, I think fine to leave the conservative part for a later PR. I've added an explicit ValueError for the conservative case in the meantime. I reviewed your updated notebook, which looks great! I also ran the tests (and skimmed the code, but found it a bit hard to follow at first glance) and can confirm everything passed locally. Please feel free to merge when you're ready! |
LGTM +1 |
… NotImplementedError is raised
Thanks for your input @hdrake and @raphaeldussin!
Yep, I remember it took me a while to understand the logic of the I made three more modifications:
|
target_dim
as parameter to .transform()
@NoraLoose, after adding What environment are you using to run these example notebooks? I noticed, for example, that the notebook using Related to your question here: #664 (comment) |
@hdrake The GitHub Actions do not execute the notebooks; they are simply rendered as provided by the user. I recall needing to add more packages to my environment to run the notebook from start to finish, but that environment isn’t clean. We should open a new issue to create a dedicated |
I'm merging this, and will open two issues:
|
This PR adds functionality to enable regridding onto a spatially varying vertical coordinate.
pre-commit run --all-files
whats-new.rst
I added a section to the existing
doc/transform.ipynb
notebook to document the new capability. While working on this notebook, I also fixed pre-existing issues with this notebook including:autoparse_metadata=False
intoGrid()
to avoid error messagesxc
coordinate from Grid object to avoid existingValueError
.squeeze()
for plotting AMOC to avoid error