2021-08-05 20:05:17 +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.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2021-08-05 20:05:17 +00:00
|
|
|
|
2022-06-06 14:41:18 +00:00
|
|
|
label="grib_ecc-1271_test"
|
2021-08-05 20:05:17 +00:00
|
|
|
temp=temp.$label
|
|
|
|
|
|
|
|
sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
|
|
|
|
|
|
|
|
|
|
|
${tools_dir}/grib_set -s \
|
|
|
|
centre=kwbc,gridDefinitionTemplateNumber=32769,localTablesVersion=1 \
|
|
|
|
$sample_grib2 $temp
|
|
|
|
|
|
|
|
|
|
|
|
grib_check_key_equals $temp Ni,Nj "16 31"
|
|
|
|
grib_check_key_equals $temp centreLatitudeInDegrees,centreLongitudeInDegrees "0 30"
|
2024-03-07 16:58:23 +00:00
|
|
|
grib_check_key_equals $temp minimum,maximum "273 273"
|
2021-08-05 20:05:17 +00:00
|
|
|
|
|
|
|
rm -f $temp
|