File: grib_dump.sh

package info (click to toggle)
eccodes 2.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 154,404 kB
  • sloc: cpp: 162,953; ansic: 26,308; sh: 21,742; f90: 6,854; perl: 6,361; python: 5,172; java: 2,226; javascript: 1,427; yacc: 854; fortran: 543; lex: 359; makefile: 283; xml: 183; awk: 66
file content (24 lines) | stat: -rwxr-xr-x 783 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
set -e 

echo "-# To dump in a WMO documentation style with hexadecimal octet values (-H).\\n"
echo "\\verbatim"
echo  ">grib_dump -OH ../data/reduced_gaussian_model_level.grib1"
echo "\\endverbatim\\n"

echo "-# To add key aliases and type information.\\n"
echo "\\verbatim"
echo  ">grib_dump -OtaH ../data/reduced_gaussian_model_level.grib1"
echo "\\endverbatim\\n"

echo "-# To obtain all the key names (computed keys included) available in a grib file.\\n"
echo "\\verbatim "
echo "> grib_dump -D ../data/regular_latlon_surface.grib1"
echo "\\endverbatim\\n"

#echo "-# To obtain a C code example from a grib file.\\n"
#echo "\\code "
#echo ">grib_dump -C ../data/regular_latlon_surface.grib1"
#./grib_dump -C ../data/regular_latlon_surface.grib1
#echo "\\endcode\\n"