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.
|
2014-08-28 09:03:16 +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
|
2023-03-18 16:00:11 +00:00
|
|
|
|
|
|
|
label="grib_iterator_test"
|
2023-07-19 15:58:28 +00:00
|
|
|
tempText=temp.$label.txt
|
|
|
|
tempGrib=temp.$label.grib
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
files="reduced_latlon_surface.grib1 \
|
|
|
|
reduced_gaussian_pressure_level.grib1 \
|
|
|
|
regular_gaussian_pressure_level.grib1 \
|
|
|
|
reduced_gaussian_sub_area.grib1 \
|
|
|
|
regular_latlon_surface.grib1 \
|
|
|
|
reduced_latlon_surface.grib2 \
|
|
|
|
reduced_gaussian_pressure_level.grib2 \
|
|
|
|
regular_gaussian_pressure_level.grib2 \
|
|
|
|
reduced_gaussian_sub_area.grib2 \
|
|
|
|
regular_latlon_surface.grib2"
|
|
|
|
|
2020-07-05 21:40:57 +00:00
|
|
|
for f in $files; do
|
2013-11-13 12:49:54 +00:00
|
|
|
file=${data_dir}/$f
|
2021-02-02 18:25:49 +00:00
|
|
|
# Must exclude the first line of grib_get_data which is "Latitude Longitude Value"
|
2017-02-03 14:21:24 +00:00
|
|
|
iterator_count=`${tools_dir}/grib_get_data -m 9999:missing -f -p centre -F "%g" -w count=1 $file | grep -v Lat |wc -l `
|
|
|
|
numberOfPoints=`${tools_dir}/grib_get -w count=1 -p numberOfPoints $file`
|
2013-11-13 12:49:54 +00:00
|
|
|
[ $numberOfPoints = ${iterator_count} ]
|
2013-03-25 12:04:10 +00:00
|
|
|
done
|
|
|
|
|
2023-07-19 15:58:28 +00:00
|
|
|
|
2021-02-03 17:25:51 +00:00
|
|
|
# ECC-822: Increase lat/lon decimals using default grib_get_data
|
2023-07-19 15:58:28 +00:00
|
|
|
${tools_dir}/grib_get_data -L%12.6f%11.5f ${data_dir}/regular_latlon_surface.grib2 > $tempText
|
|
|
|
|
|
|
|
${tools_dir}/grib_get_data -p shortName,level ${data_dir}/regular_latlon_surface.grib2 > $tempText
|
|
|
|
grep -q "Latitude Longitude Value shortName level" $tempText
|
2021-02-03 17:25:51 +00:00
|
|
|
|
2021-08-23 15:38:53 +00:00
|
|
|
|
2022-06-27 10:47:10 +00:00
|
|
|
# Run on a spectral field - should just print out its values
|
2023-07-19 15:58:28 +00:00
|
|
|
${tools_dir}/grib_get_data "$samp_dir/sh_ml_grib2.tmpl" > $tempText
|
|
|
|
|
|
|
|
|
|
|
|
# ECC-1642: badly encoded regular grids
|
|
|
|
# -------------------------------------
|
|
|
|
${tools_dir}/grib_set -s Ni=33 $samp_dir/GRIB2.tmpl $tempGrib
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_get_data $tempGrib > $tempText 2>&1
|
|
|
|
status=$?
|
2024-01-03 17:35:09 +00:00
|
|
|
set -e
|
2023-07-19 15:58:28 +00:00
|
|
|
[ $status -ne 0 ]
|
|
|
|
grep -q "Grid description is wrong or inconsistent" $tempText
|
|
|
|
|
|
|
|
|
|
|
|
${tools_dir}/grib_set -s Ni=MISSING $samp_dir/GRIB2.tmpl $tempGrib
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_get_data $tempGrib > $tempText 2>&1
|
|
|
|
status=$?
|
2024-01-03 17:35:09 +00:00
|
|
|
set -e
|
2023-07-19 15:58:28 +00:00
|
|
|
[ $status -ne 0 ]
|
|
|
|
grep -q "Grid description is wrong or inconsistent" $tempText
|
2022-06-27 10:47:10 +00:00
|
|
|
|
|
|
|
|
2024-01-03 17:35:09 +00:00
|
|
|
set +e
|
2023-08-26 12:52:06 +00:00
|
|
|
${tools_dir}/grib_ls -s Ni=missing -j -p latLonValues $data_dir/sample.grib2 > $tempText 2>&1
|
2024-01-03 17:35:09 +00:00
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
2023-08-26 12:52:06 +00:00
|
|
|
grep -q "Key Ni cannot be 'missing' for a regular grid" $tempText
|
|
|
|
grep -q "latlonvalues: Unable to create iterator" $tempText
|
|
|
|
|
|
|
|
|
2024-01-03 17:35:09 +00:00
|
|
|
# -w option
|
|
|
|
${tools_dir}/grib_get_data -w count=11 $data_dir/tigge_cf_ecmwf.grib2 > $tempText
|
|
|
|
|
|
|
|
|
|
|
|
# ------------------------
|
|
|
|
# Bad key
|
|
|
|
# ------------------------
|
|
|
|
${tools_dir}/grib_get_data -f -p nonexistingkey $data_dir/sample.grib2 > $tempText
|
|
|
|
grep -q "not found" $tempText
|
|
|
|
|
|
|
|
|
|
|
|
# ------------------------
|
|
|
|
# Unreadable message
|
|
|
|
# ------------------------
|
|
|
|
echo GRIB > $tempGrib
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_get_data $tempGrib > $tempText 2>&1
|
|
|
|
status=$?
|
|
|
|
set -e
|
|
|
|
[ $status -ne 0 ]
|
|
|
|
cat $tempText
|
|
|
|
grep -q "unreadable message" $tempText
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-27 10:47:10 +00:00
|
|
|
# Clean up
|
2023-07-19 15:58:28 +00:00
|
|
|
rm -f $tempText $tempGrib
|