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
|
|
|
|
|
|
|
REDIRECT=/dev/null
|
2015-01-26 15:50:33 +00:00
|
|
|
temp=loc.padding.grib1
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2017-02-03 14:21:24 +00:00
|
|
|
${tools_dir}/grib_set -s setLocalDefinition=1 ${data_dir}/regular_latlon_surface.grib1 $temp
|
2013-03-25 12:04:10 +00:00
|
|
|
cat > $$_f <<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
|
|
|
|
localDefinitions=`find ${def_dir}/grib1/ -name 'local.98.*def' | sed -e 's:.*/::' |\
|
|
|
|
awk 'BEGIN {FS=".";} {print $3;}' |\
|
|
|
|
grep -v def |\
|
|
|
|
sed '/245/d' |\
|
2019-10-31 13:53:35 +00:00
|
|
|
sed '/12/d' |\
|
2013-03-25 12:04:10 +00:00
|
|
|
sed '/244/d' |\
|
|
|
|
sed '/192/d' |\
|
|
|
|
xargs`
|
|
|
|
|
|
|
|
for l1 in $localDefinitions
|
|
|
|
do
|
2018-01-08 17:53:40 +00:00
|
|
|
${tools_dir}/grib_set -M -s localDefinitionNumber=$l1 $temp locx.grib1
|
|
|
|
${tools_dir}/grib_filter -M $$_f 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
|
|
|
|
${tools_dir}/grib_filter -M $$_f locy.grib1
|
2017-11-30 17:49:46 +00:00
|
|
|
fi
|
|
|
|
done
|
2013-03-25 12:04:10 +00:00
|
|
|
done
|
|
|
|
|
2015-01-26 15:50:33 +00:00
|
|
|
rm -f $$_f locx.grib1 locy.grib1 $temp
|