mirror of https://github.com/ecmwf/eccodes.git
abstract single/multiple levels added for GRIB1
This commit is contained in:
parent
061dc1b77f
commit
e5f63fc3cc
|
@ -45,6 +45,8 @@
|
|||
# 161-199Reserved
|
||||
200 sfc Entire atmosphere considered as a single layer 0 (2 octets)
|
||||
201 201 Entire ocean considered as a single layer 0 (2 octets)
|
||||
202 al Abstract Single Level
|
||||
203 al Abstract Multiple Level
|
||||
# 202-209 Reserved
|
||||
210 pl Isobaric surface (Pa) (ECMWF extension)
|
||||
# 211-254 Reserved for local use
|
||||
|
|
|
@ -105,7 +105,8 @@ if( indicatorOfTypeOfLevel == 109 ||
|
|||
indicatorOfTypeOfLevel == 100 ||
|
||||
indicatorOfTypeOfLevel == 110 ||
|
||||
indicatorOfTypeOfLevel == 113 ||
|
||||
indicatorOfTypeOfLevel == 117)
|
||||
indicatorOfTypeOfLevel == 117 ||
|
||||
indicatorOfTypeOfLevel == 203)
|
||||
{
|
||||
alias mars.levelist = level;
|
||||
}
|
||||
|
|
|
@ -34,3 +34,5 @@
|
|||
'depthBelowSea' = {indicatorOfTypeOfLevel=160;}
|
||||
'entireAtmosphere' = {indicatorOfTypeOfLevel=200;}
|
||||
'entireOcean' = {indicatorOfTypeOfLevel=201;}
|
||||
'abstractSingleLevel' = {indicatorOfTypeOfLevel=202;}
|
||||
'abstractMultipleLevels' = {indicatorOfTypeOfLevel=203;}
|
||||
|
|
Loading…
Reference in New Issue