eccodes/tests/bufr_get.sh

52 lines
1.3 KiB
Bash
Raw Normal View History

2015-02-02 17:17:29 +00:00
#!/bin/sh
# Copyright 2005-2016 ECMWF.
2015-02-02 17:17:29 +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
#set -x
#Enter data dir
cd ${data_dir}/bufr
#Define a common label for all the tmp files
label="bufr_get_test"
#Create log file
fLog=${label}".log"
rm -f $fLog
touch $fLog
#Define tmp file
fTmp=${label}".tmp.txt"
rm -f $fTmp
#Define another tmp file to store the test results
res_get=${label}".get.test"
rm -f $res_get
#-------------------------------------------
# Test "-p" switch
#-------------------------------------------
f="aaen_55.bufr"
#The reference is the same as for ls
ref_get=$f".ls.ref"
echo "Test: -p switch" >> $fLog
echo "file: $f" >> $fLog
2016-07-05 12:10:01 +00:00
${tools_dir}/bufr_get -p totalLength,bufrHeaderCentre,bufrHeaderSubCentre,masterTableNumber,masterTablesVersionNumber,localTablesVersionNumber,numberOfSubsets,localNumberOfObservations $f > $fTmp
2015-02-02 17:17:29 +00:00
#Write the values into a file and compare with ref
cat $fTmp | awk '{split($0,a," "); for (i=1; i<=8; i++) print a[i]}' > $res_get
diff $ref_get $res_get
2015-02-02 17:17:29 +00:00
2015-02-04 13:52:37 +00:00
#Clean up
2016-07-05 12:10:01 +00:00
rm -f $fLog $fTmp $res_get