Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
/usr/local/share/eccodes/definitions/grib[edition]/localConcepts/[centre:s]

So for example the GRIB edition 2 local parameters for DWD (centre=edzw) are defined in definitions/grib2/localConcepts/edzw and GRIB edition 1 local parameters for SMHI (centre=eswi) are in definitions/grib1/localConcepts/eswi.

The following in an example The following are examples of the contents for the above files in order to handle ECMWF parameter Geopotential in GRIB edition 1:

...

Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib1/localConcepts/ecmf/shortName.def
#Geopotential
'z' = {
         table2Version = 128 ;
         indicatorOfParameter = 129 ;
        


Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib1/localConcepts/ecmf/units.def
#Geopotential
'm**2 s**-2' = {
         table2Version = 128 ;
         indicatorOfParameter = 129 ;
        }


In And for GRIB edition 2, the contents of the same files for parameter Geopotential Potential temperature gradient are:

Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib2/localConcepts/ecmf/name.def
#Geopotential#Potential temperature gradient
'GeopotentialPotential temperature gradient' = {
         discipline = 0192 ;
         parameterCategory = 3129 ;
         parameterNumber = 43 ;
        }


Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib2/localConcepts/ecmf/paramId.def
 #Geopotential#Potential temperature gradient
'129129003' = {
         discipline = 0192 ;
         parameterCategory = 3129 ;
         parameterNumber = 43 ;
        }


Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib2/localConcepts/ecmf/shortName.def
#Geopotential#Potential temperature gradient
'zptgrd' = {
         discipline = 0192 ;
         parameterCategory = 3129 ;
         parameterNumber = 43 ;
        }


Code Block
languagebash
title/usr/local/share/eccodes/definitions/grib2/localConcepts/ecmf/units.def
#Geopotential
'm**2 s**-2#Potential temperature gradient
'K' = {
         discipline = 0192 ;
         parameterCategory = 3129 ;
         parameterNumber = 43 ;
        }


Local Definitions (Local Use section)

...