ECC-1785: BUFR: Allow encoding satelliteID when rdbType=30

This commit is contained in:
shahramn 2024-03-13 17:21:00 +00:00
parent 73d2bec684
commit 6241682c47
3 changed files with 37 additions and 1 deletions

View File

@ -51,7 +51,7 @@ unsigned[2] numberOfSubsets : dump;
alias ls.numberOfSubsets=numberOfSubsets;
if (section2Present && bufrHeaderCentre==98 && section2Length==52) {
if ( rdbType == 2 || rdbType == 3 || rdbType == 8 || rdbType == 12 ) {
if ( rdbType == 2 || rdbType == 3 || rdbType == 8 || rdbType == 12 || rdbType == 30 ) {
transient isSatelliteType=1;
} else {
transient isSatelliteType=0;

View File

@ -249,6 +249,7 @@ if( HAVE_BUILD_TOOLS )
bufr_ecc-1305
bufr_ecc-1476
bufr_ecc-1623
bufr_ecc-1785
grib_ecc-490
grib_ecc-756
grib_ecc-806

35
tests/bufr_ecc-1785.sh Executable file
View File

@ -0,0 +1,35 @@
#!/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
# ---------------------------------------------------------
# This is the test for the JIRA issue ECC-1785
# BUFR: Allow encoding satelliteID when rdbType=30
# ---------------------------------------------------------
label="bufr_ecc-1785_test"
tempBufr=temp.$label.bufr
tempFilt=temp.$label.filt
tempLog=temp.$label.log
tempRef=temp.$label.ref
sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR3_local_satellite.tmpl
echo 'set numberOfSubsets=1; set rdbType=30; set satelliteID=78; write;' > $tempFilt
${tools_dir}/codes_bufr_filter -o $tempBufr $tempFilt $sample_bufr4
result=$(${tools_dir}/bufr_get -p isSatelliteType,isSatellite,satelliteID $tempBufr)
[ "$result" = "1 1 78" ]
# Clean up
rm -f $tempBufr $tempFilt $tempLog $tempRef