-
Notifications
You must be signed in to change notification settings - Fork 90
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
Add functionality to convert a forecast to a climatological anomaly #2066
Comments
This functionality might neatly fit in |
An example of such a function serving a similar purpose can be seen in the |
@maxwhitemet and I discussed this ticket this morning to come up with an implementation plan. We expect that the new functionality will look something like as follows:
|
Why a reference_epoch coordinate was added to the output cube |
As an IMPROVER scientist wishing to develop SAMOS functionality in IMPROVER, I need a utility function to allow me to convert an input cube of data to a cube containing anomaly data.
This function should take as inputs:
the following calculation should then be performed:
if variance input present:
standardised_anomaly = (data - mean) / sqrt(variance)
else:
anomaly = data - mean
Acceptance criteria
The text was updated successfully, but these errors were encountered: