...
tigge_check options
Code Block |
---|
$ tigge_check
tigge_check [options] grib_file grib_file ...
-l: check local area model fields
-v: check value ranges
-w: warnings are treated as errors
-g: write good gribs
-b: write bad gribs
-z: return 0 to calling shell
-s: check s2s fields
-r: check s2s reforecast fields
-u: check uerra fields |
...
|
Checking S2S reforecast data
|
Performance tip to speed up checking big files
...
grib_check.py options
Code Block |
---|
> python $BIN/grib_check.py
usage: grib_check.py [-h] [-v VERBOSITY] [-w] [-his] [-l [LISTING]]
[inp_file [inp_file ...]]
positional arguments:
inp_file enter input file name(s)
optional arguments:
-h, --help show this help message and exit
-v VERBOSITY, --verbosity VERBOSITY
increase output verbosity [0-2]
-w, --warning warnings are treated as errors..
-his, --history add value ranges history, if exists, to listing..
-l [LISTING], --listing [LISTING]
list defined parameters (search if argument provided!) |
Checking LC-WVF data
Code Block |
---|
> $BIN/grib_check.py lw.grib2 > field 223(Mean wave direction) key: dataRepresentationTemplateNumber expected: <0..2> encoded: 40 > field 224(10 metre U wind component) key: dataRepresentationTemplateNumber expected: <0..2> encoded: 40 Number of error(s) found: 2 |
List defined limits for a parameter
Code Block |
---|
> python /home/ma/emos/def/lcwfv/bin/grib_check.py -l 131
131 [U component of wind] [min <-250, 5> max <1, 250>] (default)
[min <-150, -10> max <10, 150>] (levtype:pv)
[min <-250, 5> max <-250, 250>] (class:s2, origin:rksl) |
...