1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/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.ctest.sh
label="grib_lam_bf_test"
temp=temp.$label.txt
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
echo "$0: This test is currently disabled on Windows"
exit 0
fi
dump_and_check()
{
input=$1
numberOfValues=$2
grib_check_key_equals $input numberOfValues $numberOfValues
${tools_dir}/grib_dump -O $input >$temp 2>&1
set +e
# Look for the word ERROR in output. We should not find any
grep -q 'ERROR ' $temp
if [ $? -eq 0 ]; then
echo "File $input: found string ERROR in grib_dump output!"
exit 1
fi
set -e
}
# Spectral LAM fields (Bi-Fourier)
# Run the test which generates the GRIB files
$EXEC ${test_dir}/grib_lam_bf
dump_and_check lam_bf_lambert_bf_ellipse_diamond.grib 3128
dump_and_check lam_bf_mercator_bf_ellipse_diamond.grib 3128
dump_and_check lam_bf_polar_stereographic_bf_ellipse_diamond.grib 3128
dump_and_check lam_bf_lambert_bf_rectangle_rectangle.grib 4096
dump_and_check lam_bf_mercator_bf_rectangle_rectangle.grib 4096
dump_and_check lam_bf_polar_stereographic_bf_rectangle_rectangle.grib 4096
# Clean up test outputs
rm -f $temp
rm -f lam_bf_lambert_bf_ellipse_diamond.grib
rm -f lam_bf_mercator_bf_ellipse_diamond.grib
rm -f lam_bf_polar_stereographic_bf_ellipse_diamond.grib
rm -f lam_bf_lambert_bf_rectangle_rectangle.grib
rm -f lam_bf_mercator_bf_rectangle_rectangle.grib
rm -f lam_bf_polar_stereographic_bf_rectangle_rectangle.grib
rm -f lam_bf_mercator_bf_ellipse_full.grib
rm -f lam_bf_polar_stereographic_bf_ellipse_full.grib
rm -f lam_bf_lambert_bf_ellipse_full.grib
|