2023-08-05 11:37:42 +00:00
|
|
|
#!/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
|
|
|
|
|
|
|
|
REDIRECT=/dev/null
|
|
|
|
|
|
|
|
label="grib_run_length_packing_test"
|
|
|
|
tempGrib=temp.$label.grib
|
|
|
|
tempLog=temp.$label.log
|
|
|
|
|
2023-08-30 11:02:52 +00:00
|
|
|
# Decoding
|
|
|
|
# ------------------
|
2023-08-05 11:37:42 +00:00
|
|
|
input=$data_dir/run_length_packing.grib2
|
|
|
|
if [ ! -f "$input" ]; then
|
|
|
|
echo " Input data file missing: $input"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
${tools_dir}/grib_dump $input
|
|
|
|
|
|
|
|
stats=$(${tools_dir}/grib_get -F%.5f -p packingType,min,max,avg $input)
|
|
|
|
[ "$stats" = "grid_run_length 1.00000 3.00000 1.00303" ]
|
|
|
|
|
|
|
|
grib_check_key_equals $input numberOfMissing 71493
|
|
|
|
grib_check_key_equals $input missingValuesPresent 1
|
|
|
|
|
2023-08-30 11:02:52 +00:00
|
|
|
# Encoding
|
|
|
|
# -----------------
|
2024-01-19 12:29:58 +00:00
|
|
|
export ECCODES_DEBUG=-1
|
2023-08-30 11:02:52 +00:00
|
|
|
$EXEC ${test_dir}/grib_run_length_packing $tempGrib
|
2024-01-19 12:29:58 +00:00
|
|
|
unset ECCODES_DEBUG
|
|
|
|
|
2023-08-30 11:22:44 +00:00
|
|
|
${tools_dir}/grib_dump -O $tempGrib
|
2024-07-12 08:51:12 +00:00
|
|
|
|
|
|
|
if [ $HAVE_GEOGRAPHY -eq 1 ]; then
|
|
|
|
${tools_dir}/grib_get_data -mXXX $tempGrib
|
|
|
|
fi
|
|
|
|
|
2023-08-30 11:02:52 +00:00
|
|
|
grib_check_key_equals $tempGrib packingType grid_run_length
|
|
|
|
|
|
|
|
stats=`${tools_dir}/grib_get -M -F%.1f -p min,max,avg $tempGrib`
|
|
|
|
[ "$stats" = "10.1 10.3 10.2" ]
|
|
|
|
|
|
|
|
|
|
|
|
# Clean up
|
2023-08-05 11:37:42 +00:00
|
|
|
rm -f $tempGrib $tempLog
|