...
| Volet |
|---|
def_attribut[ name; ccname; mult; add; nom_attribut = valeur_attribut; nom_attribut = valeur_attribut; N; nom_attribut = valeur_attribut; valeur_attribut; N; ] Where: name: noms netCDF OBLIGATOIRE cccname: noms CCCma en format 4H OBLIGATOIRE mult: facteur multiplicatif pour la conversion des unites netCDF->CCCma name of netCDF variable - mandatory cccname: name of RPN variable - mandatory mult: multiplication factor for units (type real) DEFAUT 1.0 add: facteur additif pour la conversion des unites netCDF->CCCma additive factor for units (type real) DEFAUT 0.0 nom_attribut: nom de l'attribut name of the attribute valeur_attribut: valeur associee a value associated to "nom_attribut" N: entier definissant le type de integer vale defining the type of "valeur_attribut" (2=character, 3=integer*2, 5=real*4) Note |
Notes:
...
- Unit conversion from RPN → netCDF:
...
unit(RPN) = mult*
...
unit(netCDF)+
...
add
...
- Unit conversion from netCDF → RPN :
...
unit(netCDF)= (
...
unit(RPN)-add)/
...
mult
- 'nom_attribut' and 'valeur_attribut' are only used for conversions to nsfCDF format.
Notes:
- Never put a space before the ";"!
- "[", "]", "=" et and ";" are reserved characters. So do Do not use them otherwise, for example in names or descriptions.