2023-03-02 14:28:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# (C) Copyright 2005- ECMWF.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
. ./include.ctest.sh
|
|
|
|
set -u
|
|
|
|
REDIRECT=/dev/null
|
|
|
|
label="grib_generalised_tiles_test"
|
|
|
|
temp_grib=temp.$label.grib
|
|
|
|
temp_text=temp.$label.text
|
|
|
|
sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
|
|
|
|
2023-03-02 17:25:23 +00:00
|
|
|
${tools_dir}/grib_set -s productDefinitionTemplateNumber=113,tablesVersion=30 ${sample_grib2} ${temp_grib}
|
2023-03-02 14:28:47 +00:00
|
|
|
|
|
|
|
grib_check_key_equals ${temp_grib} tileIndex,totalNumberOfTileAttributeCombinations "1 1"
|
|
|
|
|
|
|
|
${tools_dir}/grib_dump -O -p section_4 $temp_grib > $temp_text
|
|
|
|
grep -q "Generalised spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time" $temp_text
|
|
|
|
|
|
|
|
#...
|
|
|
|
#infile=${data_dir}/SOME_FILE
|
|
|
|
#${tools_dir}/grib_get
|
|
|
|
#${tools_dir}/grib_set
|
|
|
|
#grib_check_key_equals $temp k1,k2 "v1 v2"
|
|
|
|
#${tools_dir}/bufr_get
|
|
|
|
#${tools_dir}/bufr_set
|
|
|
|
#...
|
|
|
|
|
|
|
|
rm -f $temp_grib $temp_text
|