mirror of https://github.com/ecmwf/eccodes.git
37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/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
|
|
|
|
label="grib_ecc-1571"
|
|
tempGribA=temp1.$label.grib2
|
|
tempGribB=temp2.$label.grib2
|
|
sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
|
|
|
# 1st we create a sample file for UERRA with centre lfpw
|
|
${tools_dir}/grib_set -s centre=lfpw,productionStatusOfProcessedData=8 ${sample_grib2} ${tempGribA}
|
|
# Now we use the UERRA sample and add a local section to it
|
|
${tools_dir}/grib_set -s setLocalDefinition=1,grib2LocalSectionNumber=0,uerraLocalVersion=1 ${tempGribA} ${tempGribB}
|
|
|
|
# We should have a local section with uerraLocalVersion=1,experimentVersionNumber=0002
|
|
grib_check_key_equals ${tempGribB} uerraLocalVersion,experimentVersionNumber "1 0002"
|
|
grib_check_key_equals ${tempGribB} 'marsExpver,mars.expver' '0002 0002'
|
|
|
|
# set other expver
|
|
${tools_dir}/grib_set -s setLocalDefinition=1,grib2LocalSectionNumber=0,uerraLocalVersion=1,experimentVersionNumber=1234 ${tempGribA} ${tempGribB}
|
|
grib_check_key_equals ${tempGribB} uerraLocalVersion,experimentVersionNumber "1 1234"
|
|
|
|
rm -f ${tempGribA} ${tempGribB}
|
|
|
|
|
|
|
|
|
|
|