Closed jypeter closed 3 years ago
Because you didn't specify realization = '*'
, CliMAF uses a default value, which is specific to the project.
Default values for facets can be queried using function cdef
>>> cdef('realization', project='CMIP5')
'r1i1p1'
>>> cdef('realization', project='CMIP6')
'r1i1p1f*'
It's very possible I'm doing something wrong. I'm trying to update a script that was working with CMIP6 to also work with CMIP5
I have a CMIP5 variable that is available for two realizations,
r1i1p1
andr2i1p1
But CliMAF seems to find only one!
The CMIP5 projects has a
realization
facet, so why am I not getting 2 realizations ?