ECC-1184: Add test for GRIB2 levtypes

This commit is contained in:
Shahram Najm 2020-12-18 15:35:48 +00:00
parent 80d1125c5f
commit e2509cf995
2 changed files with 44 additions and 0 deletions

View File

@ -82,6 +82,7 @@ if( HAVE_BUILD_TOOLS )
grib_sh_imag
grib_sh_spectral_complex
pseudo_diag
grib_levtype
grib_grid_unstructured
grib_grid_lambert_conformal
grib_grid_polar_stereographic

43
tests/grib_levtype.sh Executable file
View File

@ -0,0 +1,43 @@
#!/bin/sh
# (C) Copyright 2005- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
#
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
#
. ./include.sh
set -u
label="grib_levtype"
if [ ! -d "$ECCODES_DEFINITION_PATH" ]; then
echo "Test $0 disabled. No definitions directory"
exit 0
fi
sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
tempGrib=temp.${label}.grib
latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2`
# These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def)
exclude="20 160 169"
levtypes=`grep typeOfFirstFixedSurface $ECCODES_DEFINITION_PATH/grib2/paramId.def |awk -F'=' '{print $2}'|tr -d ' '|tr -d ';'|sort -un`
for lt in $levtypes; do
process_type=1
for ex in $exclude; do
if [ "$lt" = "$ex" ]; then process_type=0; break; fi
done
if [ $process_type = 1 ]; then
${tools_dir}/grib_set -s tablesVersion=$latest,typeOfFirstFixedSurface=$lt $sample2 $tempGrib
result=`${tools_dir}/grib_get -p mars.levtype $tempGrib`
if [ "$result" = "$lt" ]; then
echo "ERROR: typeOfFirstFixedSurface of |$lt| not mapped to a string!"
exit 1
fi
fi
done
rm -f $tempGrib