2019-12-30 16:28:44 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2019-12-30 16:28:44 +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
|
2019-12-30 16:28:44 +00:00
|
|
|
|
2022-07-22 16:57:02 +00:00
|
|
|
label="grib_complex_test"
|
2019-12-30 16:28:44 +00:00
|
|
|
temp=${label}".grib.tmp"
|
|
|
|
temp1=${label}".1.tmp"
|
|
|
|
temp2=${label}".2.tmp"
|
|
|
|
|
|
|
|
files="sample.grib2"
|
|
|
|
|
|
|
|
for file in $files; do
|
|
|
|
infile=${data_dir}/$file
|
|
|
|
${tools_dir}/grib_set -r -s packingType=grid_complex $infile $temp
|
|
|
|
|
|
|
|
grib_check_key_equals $temp packingType grid_complex
|
|
|
|
|
|
|
|
${tools_dir}/grib_get '-F%.2f' -p min,max,avg $infile > $temp1
|
|
|
|
${tools_dir}/grib_get '-F%.2f' -p min,max,avg $temp > $temp2
|
|
|
|
diff $temp1 $temp2
|
|
|
|
|
|
|
|
rm -f $temp $temp1 $temp2
|
|
|
|
done
|
2022-11-27 17:55:25 +00:00
|
|
|
|
|
|
|
# ECC-523
|
|
|
|
infile=${data_dir}/gfs.complex.mvmu.grib2
|
|
|
|
grib_check_key_equals $infile 'missingValueManagementUsed,bitmapPresent' '1 0'
|
|
|
|
grib_check_key_equals $infile 'numberOfMissing,numberOfMissingValues' '556901 556901'
|
|
|
|
infile=${data_dir}/gfs.c255.grib2
|
|
|
|
grib_check_key_equals $infile 'missingValueManagementUsed,bitmapPresent' '0 1'
|
|
|
|
grib_check_key_equals $infile 'numberOfMissing,numberOfMissingValues' '7665 7665'
|