-
Notifications
You must be signed in to change notification settings - Fork 55
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
DPxx latitude relative error checking fix #3111
Conversation
The name of skipped jobs from a matrix needed to be fixed
…atible for southern hemisphere cases
Merge ProtectionsYour pull request matches the following merge protections and will not be merged until they are valid. 🟢 Enforce checks passingWonderful, this rule succeeded.Make sure that checks are not failing on the PR, and reviewers approved
|
Probably need to resolve conflicts by taking whatever is on master. |
Sorry, that's my fault. I was working the kinks of mergify's syntax, and you must have opened the PR right before I forced push the final config. You can just do an interactive rebase where you purge the "Mergify: ..." commit, then force push. |
The failing test for |
When verifying that the user-defined latitude matches the model-expected latitude, the code block was failing for latitudes < 0 when computing the relative error. This issue occurred because the normalization value was set to the minimum allowable threshold (0.1). To address this, we now use the absolute value of latitude to calculate the relative error. This is not an issue for longitude where all values are required to be between 0 and 360, therefore no fix was applied there.