2013-03-25 12:04:10 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2013-03-25 12:04:10 +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.
|
2013-03-25 14:23:07 +00:00
|
|
|
#
|
2013-03-25 12:04:10 +00:00
|
|
|
# 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
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2023-12-14 13:35:47 +00:00
|
|
|
label="grib_padding_test"
|
2013-03-25 12:04:10 +00:00
|
|
|
REDIRECT=/dev/null
|
2023-12-14 13:35:47 +00:00
|
|
|
tempGrib=temp.local.$label.grib1
|
|
|
|
tempFilt=temp.local.$label.filt
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-06 13:55:19 +00:00
|
|
|
if [ $ECCODES_ON_WINDOWS -eq 1 ]; then
|
|
|
|
echo "$0: This test is currently disabled on Windows"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2023-12-14 13:35:47 +00:00
|
|
|
${tools_dir}/grib_set -s setLocalDefinition=1 ${data_dir}/regular_latlon_surface.grib1 $tempGrib
|
|
|
|
cat > $tempFilt <<EOF
|
2017-11-30 17:49:46 +00:00
|
|
|
if (GRIBEXSection1Problem ) {
|
|
|
|
print "localDefinitionNumber=[localDefinitionNumber] size(GRIBEX-section1)=[GRIBEXSection1Problem] section1Length=[section1Length]";
|
|
|
|
write "problem.grib";
|
|
|
|
assert(0);
|
|
|
|
}
|
2013-03-25 12:04:10 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
# Note: we cannot use -printf "%f\n" as on some unix platforms -printf is not an option
|
|
|
|
# for find. So instead we use sed to get to the filename without the fullpath
|
2023-12-14 13:35:47 +00:00
|
|
|
localDefinitions=`find ${def_dir}/grib1/ -name 'local.98.*.def' | sed -e 's:.*/::' |\
|
2013-03-25 12:04:10 +00:00
|
|
|
awk 'BEGIN {FS=".";} {print $3;}' |\
|
|
|
|
grep -v def |\
|
|
|
|
sed '/245/d' |\
|
2019-10-31 13:53:35 +00:00
|
|
|
sed '/12/d' |\
|
2023-12-14 13:35:47 +00:00
|
|
|
sed '/50/d' |\
|
2013-03-25 12:04:10 +00:00
|
|
|
sed '/244/d' |\
|
2023-12-14 13:35:47 +00:00
|
|
|
sed '/190/d' |\
|
|
|
|
sed '/191/d' |\
|
2013-03-25 12:04:10 +00:00
|
|
|
sed '/192/d' |\
|
|
|
|
xargs`
|
|
|
|
|
2023-12-14 13:35:47 +00:00
|
|
|
count=0
|
2013-03-25 12:04:10 +00:00
|
|
|
for l1 in $localDefinitions
|
|
|
|
do
|
2023-12-14 13:35:47 +00:00
|
|
|
${tools_dir}/grib_set -M -s localDefinitionNumber=$l1 $tempGrib locx.grib1
|
|
|
|
${tools_dir}/grib_filter -M $tempFilt locx.grib1
|
2017-11-30 17:49:46 +00:00
|
|
|
for l2 in $localDefinitions
|
|
|
|
do
|
|
|
|
if [ $l1 -ne $l2 ]; then
|
|
|
|
#echo "$l1 -> $l2"
|
2018-01-08 17:53:40 +00:00
|
|
|
${tools_dir}/grib_set -M -s localDefinitionNumber=$l2 locx.grib1 locy.grib1
|
2023-12-14 13:35:47 +00:00
|
|
|
${tools_dir}/grib_filter -M $tempFilt locy.grib1
|
|
|
|
count=$((count+1))
|
2017-11-30 17:49:46 +00:00
|
|
|
fi
|
|
|
|
done
|
2013-03-25 12:04:10 +00:00
|
|
|
done
|
2023-12-14 13:35:47 +00:00
|
|
|
echo Did $count iterations
|
|
|
|
rm -f locx.grib1 locy.grib1 $tempGrib $tempFilt
|