Skip to content

Commit

Permalink
Fix DRS for IPSLCM : split attribute 'freq' into : 'out' and 'freq' (#…
Browse files Browse the repository at this point in the history
…1304)

Instead of writing e.g. :
      out: Analyse/TS_MO'
    one should no write :
      out: Analyse, freq: TS_MO

    This in mainly order to avoid side effects when creating output
    directories based on attributes value
  • Loading branch information
senesis authored Oct 8, 2021
1 parent c183833 commit 090962b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/develop/fixing_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,10 @@ formats) are supported, and should be configured in recipes as e.g.:
.. code-block:: yaml
datasets:
- {simulation: CM61-LR-hist-03.1950, exp: piControl, freq: Analyse/TS_MO,
- {simulation: CM61-LR-hist-03.1950, exp: piControl, out: Analyse, freq: TS_MO,
account: p86caub, status: PROD, dataset: IPSL-CM6, project: IPSLCM,
root: /thredds/tgcc/store}
- {simulation: CM61-LR-hist-03.1950, exp: historical, freq: Output/MO,
- {simulation: CM61-LR-hist-03.1950, exp: historical, out: Output, freq: MO,
account: p86caub, status: PROD, dataset: IPSL-CM6, project: IPSLCM,
root: /thredds/tgcc/store}
Expand Down
2 changes: 1 addition & 1 deletion esmvalcore/config-developer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ CORDEX:
IPSLCM:
cmor_strict: false
input_dir:
default: '{root}/{account}/{model}/{status}/{exp}/{simulation}/{dir}/{freq}'
default: '{root}/{account}/{model}/{status}/{exp}/{simulation}/{dir}/{out}/{freq}'
input_file:
default:
- '{simulation}_*_{ipsl_varname}.nc'
Expand Down

0 comments on commit 090962b

Please sign in to comment.