Page 6 sur 7
Format
The data files are in the netCDF format and are compatible with the CF convention. It defines the meaning of attributes, the naming of variables, the units, the coordinate variables.
The files are organized by variable, by month for analysis and for forecast, for 4xdaily fields. For monthly means, there is one file per variable and per year. The geophysical values of variables (called unpacked values) are coded on 2 bytes (packed values).
The vast majority of the data that we distribute in netCDF files have been packed into short integers to save space. You must unpack that data to get the correct floating point representation of the data. Each netCDF variable (except some of them) that has been packed has an add_offset and scale_factor attribute associated with it. The scale_factor and add_offset can vary with each netCDF file even for the same variable from the same data set, though this doesn't happen often.
The formula to unpack the data is:
unpacked value = add_offset + ( (packed value) * scale_factor )
Related file Naming and Structure information The ECMWF data are stored on the directory: /bdd/ERA40/
- The subdirectories are the following:
/FFF/XXX/AA_LL/YYYY/name_file
FFF: format (NETCDF)
XXX: is the temporal resolution (4xdaily)
AA_LL: AA is the type of data (AN for Analysis or FC for Forecast)
LL is the level type (SF, PL, ML)
SF: surface
PL: Pressure level
ML:Model level
YYYY: year
NAME.YYYY[MM].ABC.EXT
NAME: is the netcdf parameter name (see table)
YYYY: year
MM: month
A: type(a: analysis, f:forecast)
B: level type (s:surface,v: surface pv, t: isentropic level, p: pressure level, m: model level)
C: temporal resolution (h: 4 x daily, d: daily mean, m: monthly mean)
EXT: format (.nc forNetcdf)
|