2016-01-21 18:06:07 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2016-01-21 18:06:07 +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-01-21 18:06:07 +00:00
|
|
|
|
2023-03-23 15:08:33 +00:00
|
|
|
label="grib_octahedral_test"
|
|
|
|
temp=temp.$label.txt
|
2016-01-21 18:06:07 +00:00
|
|
|
|
2018-01-18 12:36:56 +00:00
|
|
|
# All our current GRIB samples (with reduced gaussian grids) are NON-Octahedral
|
2018-07-19 13:31:28 +00:00
|
|
|
for s in $ECCODES_SAMPLES_PATH/reduced_gg_pl*.tmpl; do
|
2018-01-18 12:36:56 +00:00
|
|
|
grib_check_key_equals $s "isOctahedral" "0"
|
|
|
|
done
|
2016-01-21 18:06:07 +00:00
|
|
|
|
2018-01-18 12:36:56 +00:00
|
|
|
# Check an actual global Octahedral
|
|
|
|
input=${data_dir}/msl.octa.glob.grib1
|
2016-01-21 18:06:07 +00:00
|
|
|
grib_check_key_equals $input "global,isOctahedral" "1 1"
|
|
|
|
|
|
|
|
# Check numberOfDataPoints
|
|
|
|
grib_check_key_equals $input "numberOfDataPoints,numberOfCodedValues" "6599680 6599680"
|
|
|
|
|
2018-07-19 13:31:28 +00:00
|
|
|
# Only do lengthy iterator test if extra tests are enabled
|
2024-07-12 08:51:12 +00:00
|
|
|
if [ $HAVE_EXTRA_TESTS -eq 1 -a $HAVE_GEOGRAPHY -eq 1 ]; then
|
2018-07-19 13:31:28 +00:00
|
|
|
${tools_dir}/grib_get_data $input > $temp
|
|
|
|
numlines=`wc -l $temp | awk '{print $1}'`
|
|
|
|
[ "$numlines" = "6599681" ] # 1 + numberOfDataPoints
|
|
|
|
fi
|
2016-01-21 18:06:07 +00:00
|
|
|
|
2024-02-19 22:09:03 +00:00
|
|
|
# Regular Gaussian (no pl array)
|
|
|
|
input=${data_dir}/regular_gaussian_model_level.grib2
|
|
|
|
grib_check_key_equals $input isOctahedral 0
|
|
|
|
|
|
|
|
result=$( $tools_dir/grib_get -s Ni=missing -p isOctahedral $input )
|
|
|
|
[ $result -eq 0 ]
|
|
|
|
|
|
|
|
# Clean up
|
2016-01-21 18:06:07 +00:00
|
|
|
rm -f $temp
|