Skip to content
Discussion options

You must be logged in to vote

I would recommend writing a small script or Jupyter notebook to populate the datasets and additional_datasets sections of your recipe, that will be much less cumbersome. See here for an example that you can start out from: https://docs.esmvaltool.org/projects/ESMValCore/en/latest/notebooks/composing-recipes.html

To find out which datasets you want to ignore, you can add a bit of code like this:

dataset_template = esmvalcore.dataset.Dataset(
    short_name="tas",
    mip="Amon",
    project="CMIP6",
    exp="historical",
    dataset="*",
    institute="*",
    ensemble="*",
    grid="*",
)
all_datasets = list(dataset_template.from_files())
usable_datasets = []
for dataset in results:
try:
…

Replies: 3 comments 6 replies

Comment options

You must be logged in to vote
5 replies
@prosku
Comment options

@jlenh
Comment options

jlenh Jul 7, 2025
Collaborator

@bouweandela
Comment options

Answer selected by prosku
@prosku
Comment options

@prosku
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@prosku
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants