2016-09-30 07:53:04 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 18:07:47 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2016-09-30 07:53:04 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2016-09-30 07:53:04 +00:00
|
|
|
|
2022-07-22 16:57:02 +00:00
|
|
|
label="grib_lam_bf_test"
|
2018-08-31 14:34:32 +00:00
|
|
|
temp=temp.$label.txt
|
|
|
|
|
2019-12-13 13:18:15 +00:00
|
|
|
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
|
|
|
|
echo "$0: This test is currently disabled on Windows"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-08-31 14:34:32 +00:00
|
|
|
dump_and_check()
|
|
|
|
{
|
|
|
|
input=$1
|
2018-09-03 14:31:31 +00:00
|
|
|
numberOfValues=$2
|
2018-09-03 12:23:20 +00:00
|
|
|
|
2018-09-03 14:31:31 +00:00
|
|
|
grib_check_key_equals $input numberOfValues $numberOfValues
|
2018-09-03 12:23:20 +00:00
|
|
|
|
2018-08-31 14:34:32 +00:00
|
|
|
${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
|
|
|
|
}
|
|
|
|
|
2019-05-16 13:55:31 +00:00
|
|
|
# Spectral LAM fields (Bi-Fourier)
|
2018-09-03 16:31:40 +00:00
|
|
|
# Run the test which generates the GRIB files
|
2020-02-13 11:21:00 +00:00
|
|
|
$EXEC ${test_dir}/grib_lam_bf
|
2018-05-10 11:12:44 +00:00
|
|
|
|
2018-09-03 14:31:31 +00:00
|
|
|
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
|
2018-08-31 14:34:32 +00:00
|
|
|
|
2018-09-03 16:31:40 +00:00
|
|
|
# Clean up test outputs
|
2018-08-31 14:34:32 +00:00
|
|
|
rm -f $temp
|
2018-09-03 16:31:40 +00:00
|
|
|
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
|
2021-07-01 18:24:33 +00:00
|
|
|
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
|