-
|
Hi ESMValTool community! I had a question regarding loading of ICON-ART dust AOD to carry out some predecessors and diagnostics to it, Going through here and going through the Can we load the ICON variables using the varaible names mentioned in the table (for example, load dust AOD into od550dust mentioned in CMIP6_AERmon?) (I dont see aerosol variables in ICON_mappings.yml file) Also, for example, od550dust variable is not mentioned in CMIP6_AERday, can I edit the file to include od550dust and it'll work for daily output files? Any help in this regard is highly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
Hi @nchawang, the entry "CMIP6" for ICON in the config-developer file just means that its output is supposed to be checked against the CMIP6 tables. The only variables "fully" supported for ICON data (i.e., tested by us) are the ones listed in the mapping file. Other variables might be supported if you specify the correct If a variable is in another table but with a wrong table, you can simply do |
Beta Was this translation helpful? Give feedback.
Hi @nchawang, the entry "CMIP6" for ICON in the config-developer file just means that its output is supposed to be checked against the CMIP6 tables. The only variables "fully" supported for ICON data (i.e., tested by us) are the ones listed in the mapping file.
Other variables might be supported if you specify the correct
var_typein your recipe (e.g., at the place where you define things likemip: AERmon. To fully support them, we would need to add them to our mapping table (see example pull request ESMValGroup/ESMValCore#2700). Alternatively, you can also use a custom mapping by using the configuration optionextra_facets_dir, see here for details.If a variable is in another table but …