mirror of https://github.com/ecmwf/eccodes.git
33 lines
903 B
Bash
33 lines
903 B
Bash
|
#!/bin/sh
|
||
|
# Copyright 2005-2019 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
|
||
|
|
||
|
REDIRECT=/dev/null
|
||
|
label="grib_complex"
|
||
|
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
|