mirror of https://github.com/ecmwf/eccodes.git
42 lines
1.8 KiB
Bash
Executable File
42 lines
1.8 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "-# Without options a default list of keys is printed. \\n"
|
|
echo "The default list is different depending on the type of grib message. \\n"
|
|
echo "\\verbatim "
|
|
echo "> grib_ls ../data/reduced*.grib1 ../data/regular*.grib1 ../data/reduced*.grib2 \\n"
|
|
#grib_ls -W 8 ../data/reduced*.grib1 ../data/regular*.grib1 ../data/reduced*.grib2
|
|
echo "\\endverbatim\\n "
|
|
|
|
echo "-# To print offset and count number in file use the keys offset and count\\n "
|
|
echo "Also the total count in a set of files is available as countTotal\\n"
|
|
echo "\\verbatim "
|
|
echo "> grib_ls -p offset,count,countTotal ../data/reduced*.grib1"
|
|
#grib_ls -p offset,count,countTotal ../data/reduced*.grib1
|
|
echo "\\endverbatim\\n "
|
|
|
|
echo "-# To list only a subset of messages use the -w (where option).\\n "
|
|
echo "Only the pressure levels are listed with the following line.\\n "
|
|
echo "\\verbatim "
|
|
echo "> grib_ls -w levelType=pl ../tigge_pf_ecmwf.grib2 "
|
|
#grib_ls -W 8 -w levelType=pl ../data/tigge_pf_ecmwf.grib2
|
|
echo "\\endverbatim\\n "
|
|
|
|
echo "-# All the grib messages not on pressure levels are listed as follows:\\n "
|
|
echo "\\verbatim "
|
|
echo "> grib_ls -w levelType!=pl ../tigge_pf_ecmwf.grib2 "
|
|
#grib_ls -W 8 -w levelType!=pl ../data/tigge_pf_ecmwf.grib2
|
|
echo "\\endverbatim\\n "
|
|
|
|
echo "-# To get the closest grid point to a latitude/longitude.\\n"
|
|
echo "\\code "
|
|
echo ">grib_ls -l 51.46,-1.33,1 -p paramId,name ../data/reduced_gaussian_surface.grib2"
|
|
./grib_ls -l 51.46,-1.33,1 -p paramId,shortName ../data/reduced_gaussian_surface.grib2
|
|
echo "\\endcode\\n"
|
|
|
|
echo "-# To get a list ordered by the 'level' key (ascending order).\\n "
|
|
echo "\\verbatim "
|
|
echo "> grib_ls -B 'level:i asc' tigge_af_ecmwf.grib2"
|
|
echo "\\endverbatim\\n "
|
|
echo "Note: we need to specify the ':i' to get a numerical sort. By default values are sorted as strings so a level of 100 would come before 20!"
|