Matching levels¶
GRIB1¶
Syntax: level:GRIB1,leveltype,l1,l2
Any of leveltype, l1, or l2 can be omitted; if omitted, any value will
match.
Examples¶
Given level GRIB1(1) (Surface level, with no parameters):
level:GRIB1matcheslevel:GRIB1,1matcheslevel:GRIB1,2does not matchlevel:GRIB1,1,0does not match
Given level GRIB1(103, 1000) (Simple level: altitude above MSL):
level:GRIB1matcheslevel:GRIB1,103matcheslevel:GRIB1,103,1000matcheslevel:GRIB1,1does not matchlevel:GRIB1,103,1001does not matchlevel:GRIB1,103,1000,1000does not match
Given level GRIB1(104, 123, 223) (Layer between two altitudes):
level:GRIB1matcheslevel:GRIB1,104matcheslevel:GRIB1,104,,223matcheslevel:GRIB1,104,123matcheslevel:GRIB1,104,123,223matcheslevel:GRIB1,103,123does not matchlevel:GRIB1,104,123,222does not match
GRIB2 single level¶
Syntax: level:GRIB2S,type,scale,value
Any of type, scale, or value can be omitted; if omitted, any value will
match.
Examples¶
Given level GRIB2S(103, 0, 1000):
level:GRIB2Smatcheslevel:GRIB2S,103matcheslevel:GRIB2S,103,0,1000matcheslevel:GRIB2S,103,0matcheslevel:GRIB2S,103,,1000matcheslevel:GRIB2S,103,1,1000does not matchlevel:GRIB2S,103,0,1001does not match
GRIB2 layer¶
Syntax: level:GRIB2D,type1,scale1,value1,type2,scale2,value2
Any of the parameters can be omitted; if omitted, any value will match.
Given level GRIB2D(103, 0, 1000, 103, 0, 1100):
level:GRIB2Dmatcheslevel:GRIB2D,103matcheslevel:GRIB2D,103,0,1000matcheslevel:GRIB2D,103,0matcheslevel:GRIB2D,103,,1000matcheslevel:GRIB2D,103,,,103,,matcheslevel:GRIB2D,103,0,1000,103,0,1100matcheslevel:GRIB2S,103,0,1000does not matchlevel:GRIB2D,102does not matchlevel:GRIB2D,103,1,1000,103,1,1100does not match
ODIMH5 layer¶
Syntax: level:ODIMH5,val1 val2 val3 .... [offset value]
Match any elevation angle equal to given values, offset value is the maximum allowed tollerance.
Syntax: level:ODIMH5,range minval maxval
Match any elevation between the given min and max values.
Examples¶
Given level ODIMH5(0.5, 5.5, 10.5):
level:ODIMH5, 0.5matcheslevel:ODIMH5, 0.5 5.5 10.5 offset 0.5matcheslevel:ODIMH5, range 5 20matcheslevel:GRIB2S,103,0,1000does not matchlevel:GRIB2D,102does not matchlevel:GRIB2D,103,1,1000,103,1,1100does not match