-
Notifications
You must be signed in to change notification settings - Fork 287
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
iris.exceptions.NotYetImplementedError: Coord AuxCoord #4000
Comments
An alternative workaround would be to define p0 as a scalar cube: p0 = iris.cube.Cube(1000.0, long_name='reference_pressure', units='hPa')
p0 / pressure this has only worked since Iris 3.0. If I keep |
Ah, I see @bjlittle almost completely rewrote arithmetic for Iris 3.0 (making it better in all sorts of ways) so he'll know how easy it would be to reinstate that functionality. |
@SarahAlidoost Apologies for the delay in getting back to you... and thanks for taking the time to raise your very first Okay, so you've given me everything I need to replicate this issue and investigate further. So leave it with me and I'll take it from here. I'll get back as soon as possible once I've figured out a way forward and a plan of action. Thanks again 👍 |
Hey @SarahAlidoost, Just to let you know that I can easily recreate this issue on Iris We're going to make an Iris You can track our progress with the I don't have an ETA of when |
thanks a lot for the explanations and update. Looking forward to v3.0.2 release 👍 |
Hey @SarahAlidoost, It's been a while, but I've not forgotten about you or this issue 😄 Just to let you know that we're in the final stages of pulling together I'm glad to say that I've managed to work out the root cause of the problem, and I'm now testing my fix. Once my fix is tested, reviewed and merged, we'll then release Thanks for your patience 👍 |
Closed by #4159 |
🐛 Bug Report
The order in which a mathematical operation is applied on a 'iris.coords.AuxCoord' and 'iris.cube.Cube' makes a difference, i.e.
iris.cube.Cube
/iris.coords.AuxCoord
works fine whereasiris.coords.AuxCoord
/iris.cube.Cube
returns the error as:A workaround to avoid the error is that the user takes care of the order of "Cubes" and "Auxcoords". However, this can cause a problem in complicated equations including several terms.
How To Reproduce
Steps to reproduce the behaviour:
Environment
The text was updated successfully, but these errors were encountered: