Found from an error running an ESMValTool recipe in this question. Which is using iris in python to load the files.
It looks like it cannot use the cell area file areacella
as the dimensions are different from the variable ta
for air temperature. The latitude length is 145 for area and 144 for ta.
I’ve looked into some other variables, mainly looking at the variables here: /g/data/fs38/publications/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon
(not sure if in other experiments or ensembles.)
and have found some have a latitude dimension length of 145, some 144.
eg.
Cube.summary of <iris 'Cube' of surface_upward_sensible_heat_flux / (W m-2) (time: 1980; latitude: 145; longitude: 192)>> hfss
These are latitude: 145:
['hfss', 'tas', 'hfls', 'rsuscs', 'uas', 'cl', 'phalf', 'clivi', 'prw', 'ps', 'prc', 'rtmt', 'evspsbl', 'sci', 'rlutcs', 'tasmin', 'rsdscs', 'rldscs', 'tasmax', 'tauu', 'ts', 'rlds', 'rsds', 'huss', 'cli', 'rsutcs', 'clw', 'rsdt', 'hurs', 'pfull', 'psl', 'prsn', 'rlut', 'clt', 'rsut', 'sfcWind', 'pr', 'rlus', 'rsus', 'sbl']
These are latitude: 144:
['wap', 'ta', 'hur', 'ua', 'vas', 'hus', 'va', 'tauv', 'zg']
Is there an explanation for this?