Replies: 1 comment 2 replies
-
This really is a slurry of different problems and I am not sure how closely they are related. What I can see now:
Finally, there is the MIROC-ES2L where you write "SSP data contains loads of other variables". How is that a problem? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don't know if this is useful for anyone else, but I generated a recipe that looks at every
tos
(Temperature at the ocean surface) dataset in the historical and Tier1 SSP datasets. Pretty much every model in CMIP6 has provided this dataset. Elsewhere in the the recipe, I take a spatial average usingarea_statistics
preprocessor,operator: mean
, which of course, requires theareacello
Ofx dataset.The recipe is:
(which requires ESMValGroup/ESMValCore#1082).
I've been working through these and making minor fixes where necessary. However, some models simply need to be excluded at the moment. The following models can not be used for the reason supplied:
So, if you want to remove them from your recipe, run the following command in python, then copy paste the output to the command line:
Which will produce something that looks like:
This sed command prepends a hash
#
to every line where it finds the model name, removing the model from the list of datasets. Note that this only works if you use the one line per model in your datasets list.Beta Was this translation helpful? Give feedback.
All reactions