2015-02-03 10:06:03 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2015-02-03 10:06:03 +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.
|
|
|
|
#
|
|
|
|
|
|
|
|
. ./include.sh
|
|
|
|
|
|
|
|
|
2020-07-04 14:30:10 +00:00
|
|
|
# Enter data dir
|
2015-02-03 10:06:03 +00:00
|
|
|
cd ${data_dir}/bufr
|
|
|
|
|
2020-07-04 14:30:10 +00:00
|
|
|
# Define a common label for all the tmp files
|
2015-02-03 10:06:03 +00:00
|
|
|
label="bufr_copy_test"
|
|
|
|
|
2020-07-04 14:30:10 +00:00
|
|
|
# Create log file
|
2015-02-03 10:06:03 +00:00
|
|
|
fLog=${label}".log"
|
|
|
|
rm -f $fLog
|
|
|
|
touch $fLog
|
|
|
|
|
2020-07-04 14:30:10 +00:00
|
|
|
# Define tmp bufr files
|
2015-02-03 10:06:03 +00:00
|
|
|
fBufrInput=${label}".bufr.input"
|
|
|
|
fBufrTmp=${label}".bufr.tmp"
|
|
|
|
|
2020-07-04 14:30:10 +00:00
|
|
|
# Create a bufr file with various message types
|
2015-02-03 10:06:03 +00:00
|
|
|
cat syno_multi.bufr temp_101.bufr > $fBufrInput
|
|
|
|
|
|
|
|
#----------------------------------------------------
|
2018-08-22 11:39:40 +00:00
|
|
|
# Test: copy synop messages
|
2015-02-03 10:06:03 +00:00
|
|
|
#----------------------------------------------------
|
2017-11-30 17:49:46 +00:00
|
|
|
rm -f $fBufrTmp
|
2015-02-03 10:06:03 +00:00
|
|
|
|
|
|
|
echo "Test: copy synop messages " >> $fLog
|
|
|
|
${tools_dir}/bufr_copy -w dataCategory=0 $fBufrInput $fBufrTmp >> $fLog
|
|
|
|
|
|
|
|
for i in 1 2 3 ;do
|
|
|
|
category=`${tools_dir}/bufr_get -w count=$i -p dataCategory:l $fBufrTmp`
|
|
|
|
[ $category = "0" ]
|
|
|
|
done
|
|
|
|
|
|
|
|
#----------------------------------------------------
|
2018-08-22 11:39:40 +00:00
|
|
|
# Test: copy non-synop messages
|
2015-02-03 10:06:03 +00:00
|
|
|
#----------------------------------------------------
|
2017-11-30 17:49:46 +00:00
|
|
|
rm -f $fBufrTmp
|
2015-02-03 10:06:03 +00:00
|
|
|
|
|
|
|
echo "Test: copy non-synop messages " >> $fLog
|
|
|
|
${tools_dir}/bufr_copy -w dataCategory!=0 $fBufrInput $fBufrTmp >> $fLog
|
|
|
|
|
|
|
|
[ `${tools_dir}/bufr_get -p dataCategory:l $fBufrTmp` = "2" ]
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
# Test: use the square brackets to insert the value of a key
|
|
|
|
#-------------------------------------------------------------------
|
2017-11-30 17:49:46 +00:00
|
|
|
rm -f ${fBufrTmp}
|
|
|
|
rm -f ${fBufrTmp}_*.bufr
|
2015-02-03 10:06:03 +00:00
|
|
|
|
|
|
|
echo "Test: use the square brackets to insert the value of a key " >> $fLog
|
2015-02-03 11:16:00 +00:00
|
|
|
${tools_dir}/bufr_copy $fBufrInput ${fBufrTmp}_[dataCategory].bufr >> $fLog
|
2015-02-03 10:06:03 +00:00
|
|
|
|
2015-02-03 11:16:00 +00:00
|
|
|
[ -s ${fBufrTmp}_0.bufr ]
|
|
|
|
[ -s ${fBufrTmp}_2.bufr ]
|
2015-02-03 10:06:03 +00:00
|
|
|
|
2017-11-30 17:49:46 +00:00
|
|
|
rm -f ${fBufrTmp}_*.bufr
|
2018-08-22 11:39:40 +00:00
|
|
|
rm -f $fBufrInput
|
2015-02-03 10:06:03 +00:00
|
|
|
|
2018-08-22 11:39:40 +00:00
|
|
|
#-------------------------------------------------------------------
|
|
|
|
# Test: The -X option
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
echo "Test: use of -X option" >> $fLog
|
|
|
|
fBufrInput=aeolus_wmo_26.bufr
|
|
|
|
${tools_dir}/bufr_copy -w count=1 -X 0 $fBufrInput $fBufrTmp #First msg
|
|
|
|
r1=`${tools_dir}/bufr_get -w count=1 -n ls $fBufrInput`
|
|
|
|
r2=`${tools_dir}/bufr_get -n ls $fBufrTmp`
|
|
|
|
[ "$r1" = "$r2" ]
|
|
|
|
|
2018-08-22 13:53:01 +00:00
|
|
|
#${tools_dir}/bufr_copy -w count=1 -X 19449 $fBufrInput $fBufrTmp #Last msg
|
|
|
|
#r1=`${tools_dir}/bufr_get -w count=11 -n ls $fBufrInput`
|
|
|
|
#r2=`${tools_dir}/bufr_get -n ls $fBufrTmp`
|
|
|
|
#[ "$r1" = "$r2" ]
|
|
|
|
|
|
|
|
#${tools_dir}/bufr_copy -w count=1 -X 10972 $fBufrInput $fBufrTmp
|
|
|
|
#r=`${tools_dir}/bufr_get -p typicalTime,numberOfSubsets $fBufrTmp`
|
|
|
|
#[ "$r" = "000013 41" ]
|
2018-08-22 11:39:40 +00:00
|
|
|
|
|
|
|
# Clean up
|
|
|
|
#-----------
|
2015-02-03 10:06:03 +00:00
|
|
|
rm -f $fLog
|
2017-11-30 17:49:46 +00:00
|
|
|
rm -f $fBufrTmp
|