2019-09-03 15:49:01 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2019-09-03 15:49:01 +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
|
2024-07-12 08:51:12 +00:00
|
|
|
|
|
|
|
if [ $HAVE_GEOGRAPHY -eq 0 ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-09-03 15:49:01 +00:00
|
|
|
# ---------------------------------------------------------
|
|
|
|
# This is the test for the JIRA issue ECC-984
|
|
|
|
# grib_get_data: missing jDirectionIncrement produces huge values
|
|
|
|
# ---------------------------------------------------------
|
2022-06-06 14:41:18 +00:00
|
|
|
label="grib_ecc-984_test"
|
2019-09-03 15:49:01 +00:00
|
|
|
tempGrb=temp.${label}.grb
|
|
|
|
tempOut=temp.${label}.txt
|
|
|
|
tempErr=temp.${label}.err
|
|
|
|
|
|
|
|
input=$data_dir/sample.grib2
|
|
|
|
${tools_dir}/grib_set -s ijDirectionIncrementGiven=0 $input $tempGrb
|
|
|
|
grib_check_key_equals $tempGrb jDirectionIncrementInDegrees MISSING
|
|
|
|
${tools_dir}/grib_get_data -F%.2f $tempGrb >$tempOut 2>$tempErr
|
|
|
|
|
|
|
|
grep -q "2.000 20.000 302.53" $tempOut
|
2023-05-12 08:58:00 +00:00
|
|
|
# grep -q "Cannot use jDirectionIncrement" $tempErr
|
2019-09-03 15:49:01 +00:00
|
|
|
|
2023-05-12 09:10:53 +00:00
|
|
|
# ECC-1586
|
|
|
|
${tools_dir}/grib_set -s jDirectionIncrement=MISSING,iDirectionIncrement=MISSING $input $tempGrb
|
|
|
|
${tools_dir}/grib_get_data -F%.2f $tempGrb >$tempOut 2>$tempErr
|
|
|
|
grep -q "2.000 20.000 302.53" $tempOut
|
|
|
|
|
|
|
|
|
2019-09-03 15:49:01 +00:00
|
|
|
# Clean up
|
|
|
|
rm -f $tempGrb $tempOut $tempErr
|