-
Notifications
You must be signed in to change notification settings - Fork 38
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
Multi-model after time average #41
Comments
@ledm
if the cube has a single time point then |
so a minimal temporal check has to be done, but that one is up to you ie how far part in time you can still compute the multimodel stats |
I found a bug related to this today. The multi_model fails when the template_cube has no latitude or longitude component. The solution is to move the lines:
inside the shape statements:
The problem with this whole part of For instance, this line
has depth hardwired into it! Not useful for atmospheric people!.
|
Hey,
I'm hoping that someone can help me figure out whats going wrong here. I'm trying produce a multi-model mean of a 2D (x-z dimensional) field. It's a fairly complex preprocessor, several of the stages can be quite slow, and I'll need to run it over lots (dozens?) of model datasets. With that in mind, I'm trying to keep it lightweight:
(The extract_levels field is a bit silly, please don't worry about it too much.)
The problem that I'm seeing now is that the
multi_model_statistics
part doesn't produce any results. I think that this is because it can't find a time overlap between the files:The first step of the preprocessor is to take a time average, as this reduces the workload of the function by an order of magnitude or more. However, I suspect that this is the reason why it can't find any overlap in the time range between the models.
Perhaps people can suggest a better way to do this - or perhaps a way to get the multi-model mean function to ignore the time overlap?
Cheers!
The text was updated successfully, but these errors were encountered: