#!/bin/sh # Copyright 2005-2015 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.sh #set -x #Enter data dir cd ${data_dir}/bufr #Define a common label for all the tmp files label="bufr_copy_test" #Create log file fLog=${label}".log" rm -f $fLog touch $fLog #Define tmp bufr files fBufrInput=${label}".bufr.input" fBufrTmp=${label}".bufr.tmp" #Create a bufr file with various message types cat syno_multi.bufr temp_101.bufr > $fBufrInput #---------------------------------------------------- # Test: copy synop messages #---------------------------------------------------- rm -f $fBufrTmp | true 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 #---------------------------------------------------- # Test: copy non-synop messages #---------------------------------------------------- rm -f $fBufrTmp | true 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 #------------------------------------------------------------------- #TODO: figure out if this should work at all rm -f $fBufrTmp | true echo "Test: use the square brackets to insert the value of a key " >> $fLog #${tools_dir}/bufr_copy $fBufrInput $fBufrTmp_[dataCategory].bufr >> $fLog #[ -s $fBufrTmp_0.bufr ] #[ -s $fBufrTmp_2.bufr ] rm -f ${fBufrTmp}_*.bufr | true #Clean up rm -f $fLog rm -f $fBufrTmp | true rm -f $fBufrInput | true