2016-08-05 15:01:56 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2016-08-05 15:01:56 +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
|
2016-08-05 15:01:56 +00:00
|
|
|
|
|
|
|
REDIRECT=/dev/null
|
|
|
|
|
2020-07-09 11:45:58 +00:00
|
|
|
label="grib_dump_test"
|
|
|
|
temp=temp.$label.txt
|
|
|
|
|
2018-08-23 10:20:37 +00:00
|
|
|
if [ $HAVE_MEMFS -eq 1 ]; then
|
|
|
|
unset ECCODES_DEFINITION_PATH
|
|
|
|
unset ECCODES_SAMPLES_PATH
|
|
|
|
fi
|
|
|
|
|
2016-08-05 15:01:56 +00:00
|
|
|
files="
|
|
|
|
constant_field.grib1
|
|
|
|
lfpw.grib1
|
|
|
|
missing_field.grib1
|
|
|
|
reduced_gaussian_lsm.grib1
|
|
|
|
reduced_gaussian_model_level.grib1
|
|
|
|
reduced_gaussian_pressure_level.grib1
|
|
|
|
reduced_gaussian_pressure_level_constant.grib1
|
|
|
|
reduced_gaussian_sub_area.grib1
|
|
|
|
reduced_gaussian_surface.grib1
|
|
|
|
reduced_latlon_surface.grib1
|
|
|
|
reduced_latlon_surface_constant.grib1
|
|
|
|
reference_ensemble_mean.grib1
|
|
|
|
reference_stdev.grib1
|
|
|
|
regular_gaussian_model_level.grib1
|
|
|
|
regular_gaussian_pressure_level.grib1
|
|
|
|
regular_gaussian_pressure_level_constant.grib1
|
|
|
|
regular_gaussian_surface.grib1
|
|
|
|
regular_latlon_surface.grib1
|
|
|
|
regular_latlon_surface_constant.grib1
|
|
|
|
second_ord_rbr.grib1
|
|
|
|
small_ensemble.grib1
|
|
|
|
spectral_complex.grib1
|
|
|
|
spherical_model_level.grib1
|
|
|
|
spherical_pressure_level.grib1
|
|
|
|
constant_field.grib2
|
|
|
|
gfs.c255.grib2
|
|
|
|
jpeg.grib2
|
|
|
|
missing.grib2
|
|
|
|
multi.grib2
|
|
|
|
multi_created.grib2
|
|
|
|
reduced_gaussian_model_level.grib2
|
|
|
|
reduced_gaussian_pressure_level.grib2
|
|
|
|
reduced_gaussian_pressure_level_constant.grib2
|
|
|
|
reduced_gaussian_sub_area.grib2
|
|
|
|
reduced_gaussian_surface.grib2
|
|
|
|
reduced_gaussian_surface_jpeg.grib2
|
|
|
|
reduced_latlon_surface.grib2
|
|
|
|
reduced_latlon_surface_constant.grib2
|
|
|
|
regular_gaussian_model_level.grib2
|
|
|
|
regular_gaussian_pressure_level.grib2
|
|
|
|
regular_gaussian_pressure_level_constant.grib2
|
|
|
|
regular_gaussian_surface.grib2
|
|
|
|
regular_latlon_surface.grib2
|
|
|
|
regular_latlon_surface_constant.grib2
|
|
|
|
sample.grib2
|
|
|
|
spherical_model_level.grib2
|
|
|
|
spherical_pressure_level.grib2
|
|
|
|
test_uuid.grib2
|
|
|
|
tigge_af_ecmwf.grib2
|
|
|
|
tigge_cf_ecmwf.grib2
|
|
|
|
v.grib2
|
|
|
|
"
|
|
|
|
|
|
|
|
for file in $files; do
|
|
|
|
if [ -f ${data_dir}/$file ]; then
|
2017-02-03 14:21:24 +00:00
|
|
|
${tools_dir}/grib_dump -O ${data_dir}/$file 2> $REDIRECT > $REDIRECT
|
2016-08-05 15:01:56 +00:00
|
|
|
fi
|
|
|
|
done
|
2020-07-09 11:45:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Test for dumping a section
|
2024-06-25 11:01:22 +00:00
|
|
|
# ---------------------------
|
2020-07-09 11:45:58 +00:00
|
|
|
if [ $HAVE_JPEG -eq 0 ]; then
|
|
|
|
# No JPEG decoding enabled so dumping section 7 will issue errors
|
|
|
|
# but dumping non-data sections should work
|
|
|
|
file=${data_dir}/jpeg.grib2
|
|
|
|
${tools_dir}/grib_dump -O -p section_3,section_4 $file > $temp 2>&1
|
|
|
|
set +e
|
|
|
|
# Look for the word ERROR in output. We should not find any
|
|
|
|
grep -q 'ERROR ' $temp
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "grib_dump on $file: found string ERROR in grib_dump output!"
|
|
|
|
cat $temp
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
set -e
|
|
|
|
fi
|
|
|
|
|
2023-08-26 18:33:15 +00:00
|
|
|
# Use -s option
|
|
|
|
file=$data_dir/sample.grib2
|
|
|
|
${tools_dir}/grib_dump -s year=1909 $file > $temp 2>&1
|
|
|
|
grep -q "dataDate = 19090206" $temp
|
|
|
|
|
|
|
|
# Skip handle
|
2024-01-19 14:57:30 +00:00
|
|
|
file=$data_dir/sample.grib2
|
2023-08-26 18:33:15 +00:00
|
|
|
${tools_dir}/grib_dump -w count=4 $file > $temp 2>&1
|
|
|
|
|
2024-01-19 14:57:30 +00:00
|
|
|
file=$data_dir/sample.grib2
|
|
|
|
ECCODES_DEBUG=1 ${tools_dir}/grib_dump $file > $temp 2>&1
|
|
|
|
|
2024-06-25 11:01:22 +00:00
|
|
|
# Check the right number of sections are listed in the dump
|
|
|
|
# ---------------------------------------------------------
|
|
|
|
file=$data_dir/sample.grib2
|
|
|
|
${tools_dir}/grib_dump -O $file > $temp
|
|
|
|
count=$(grep -c SECTION_ $temp)
|
|
|
|
[ $count -eq 8 ]
|
|
|
|
|
|
|
|
file=$data_dir/test_uuid.grib2
|
|
|
|
${tools_dir}/grib_dump -wcount=1 -O $file > $temp
|
|
|
|
count=$(grep -c SECTION_ $temp)
|
|
|
|
[ $count -eq 7 ]
|
|
|
|
|
|
|
|
file=$data_dir/regular_gaussian_model_level.grib1
|
|
|
|
${tools_dir}/grib_dump -O $file > $temp
|
|
|
|
count=$(grep -c SECTION_ $temp)
|
|
|
|
[ $count -eq 4 ]
|
|
|
|
|
|
|
|
file=$data_dir/missing_field.grib1
|
|
|
|
${tools_dir}/grib_dump -O $file > $temp
|
|
|
|
count=$(grep -c SECTION_ $temp)
|
|
|
|
[ $count -eq 5 ]
|
2024-01-19 14:57:30 +00:00
|
|
|
|
2024-02-29 21:38:15 +00:00
|
|
|
# Repeated key numberOfSection
|
|
|
|
file=$data_dir/sample.grib2
|
|
|
|
${tools_dir}/grib_dump -O $file > $temp
|
|
|
|
grep -q "numberOfSection = 1" $temp
|
|
|
|
grep -q "numberOfSection = 3" $temp
|
|
|
|
grep -q "numberOfSection = 4" $temp
|
|
|
|
grep -q "numberOfSection = 5" $temp
|
|
|
|
grep -q "numberOfSection = 7" $temp
|
|
|
|
|
|
|
|
|
2024-01-19 14:57:30 +00:00
|
|
|
# Dump long array
|
|
|
|
# ----------------
|
|
|
|
input=$data_dir/lfpw.grib1
|
|
|
|
${tools_dir}/grib_dump -w count=1 -p SPD $input
|
|
|
|
|
2023-08-26 18:33:15 +00:00
|
|
|
|
2024-01-19 17:18:29 +00:00
|
|
|
# ECC-1749: grib_dump: No gap between offsets and key name
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
file=$data_dir/sst_globus0083.grib
|
|
|
|
${tools_dir}/grib_dump -O $file > $temp 2>&1
|
|
|
|
grep -q "12-10227752 codedValues" $temp
|
|
|
|
|
2024-07-17 12:26:38 +00:00
|
|
|
# Code tables and code flags
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
file=$data_dir/sample.grib2
|
|
|
|
${tools_dir}/grib_dump -Ot $file > $temp 2>&1
|
|
|
|
fgrep -q "codetable (int) typeOfFirstFixedSurface = 103 [Specified height level above ground (m) (grib2/tables/4/4.5.table) ]" $temp
|
|
|
|
fgrep -q "codeflag (int) resolutionAndComponentFlags = 48 [00110000 (grib2/tables/4/3.3.table) ]" $temp
|
|
|
|
fgrep -q "codeflag (int) scanningMode = 0 [00000000 (grib2/tables/4/3.4.table) ]" $temp
|
2024-01-19 17:18:29 +00:00
|
|
|
|
2024-01-13 20:58:44 +00:00
|
|
|
# Error conditions
|
|
|
|
#-----------------------------------------------------------
|
2024-01-19 14:57:30 +00:00
|
|
|
file=$data_dir/sample.grib2
|
2024-01-13 20:58:44 +00:00
|
|
|
${tools_dir}/grib_dump -p nonexist $file > $temp 2>&1
|
|
|
|
grep -q "Key/value not found" $temp
|
2023-12-27 18:31:59 +00:00
|
|
|
|
2024-10-09 20:47:07 +00:00
|
|
|
# Invalid options
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_dump -jOD $file > $temp 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
|
|
|
|
2024-01-19 14:57:30 +00:00
|
|
|
|
2023-12-27 18:31:59 +00:00
|
|
|
# Unreadable message
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
tempOut=temp.$label.out
|
|
|
|
echo GRIB > $temp
|
|
|
|
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_dump $temp > $tempOut 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
grep -q "unreadable message" $tempOut
|
|
|
|
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_dump -j $temp > $tempOut 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
grep -q "unreadable message" $tempOut
|
|
|
|
|
|
|
|
rm -f $tempOut
|
|
|
|
|
2023-08-26 18:33:15 +00:00
|
|
|
# Clean up
|
2020-07-09 11:45:58 +00:00
|
|
|
rm -f $temp
|