mirror of https://github.com/ecmwf/eccodes.git
91 lines
2.8 KiB
Bash
Executable File
91 lines
2.8 KiB
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2005-2019 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
|
|
|
|
#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
|
|
|
|
# Check identidier. Edition 3 and 4
|
|
id=`${tools_dir}/bufr_get -p edition,identifier avhn_87.bufr`
|
|
[ "$id" = "3 BUFR" ]
|
|
id=`${tools_dir}/bufr_get -p edition,identifier aaen_55.bufr`
|
|
[ "$id" = "4 BUFR" ]
|
|
|
|
|
|
#-------------------------------------------
|
|
# 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
|
|
${tools_dir}/bufr_get -p totalLength,bufrHeaderCentre,bufrHeaderSubCentre,masterTableNumber,masterTablesVersionNumber,localTablesVersionNumber,numberOfSubsets,localNumberOfObservations $f > $fTmp
|
|
|
|
#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
|
|
|
|
#-------------------------------------------
|
|
# ECC-236
|
|
#-------------------------------------------
|
|
result=`${tools_dir}/bufr_get -s unpack=1 -p nonCoordinatePressure syno_1.bufr`
|
|
[ "$result" = "100910" ]
|
|
result=`${tools_dir}/bufr_get -s unpack=1 -p stationOrSiteName bssh_176.bufr`
|
|
[ "$result" = "Helgoland" ]
|
|
result=`${tools_dir}/bufr_get -s unpack=1 -p majorFrameCount aaen_55.bufr`
|
|
[ "$result" = "MISSING" ]
|
|
result=`${tools_dir}/bufr_get -s unpack=1 -p satelliteIdentifier wavb_134.bufr`
|
|
[ "$result" = "MISSING" ]
|
|
|
|
#-------------------------------------------
|
|
# ECC-315: BUFR keys in the MARS namespace
|
|
#-------------------------------------------
|
|
result=`${tools_dir}/bufr_get -m aaen_55.bufr`
|
|
[ "$result" = "2 55 2012 11 2 0 0 8 209" ]
|
|
result=`${tools_dir}/bufr_get -m syno_1.bufr`
|
|
[ "$result" = "1 1 2012 10 30 0 0 0 7.45 151.83" ]
|
|
|
|
#-------------------------------------------
|
|
# Local ECMWF section: 'ident' key
|
|
#-------------------------------------------
|
|
result=`${tools_dir}/bufr_get -p isSatellite,ident syno_1.bufr`
|
|
[ "$result" = "0 91334 " ]
|
|
result=`${tools_dir}/bufr_get -p isSatellite,ident temp_102.bufr`
|
|
[ "$result" = "0 ASDE3 " ]
|
|
result=`${tools_dir}/bufr_get -p isSatellite,ident b004_145.bufr`
|
|
[ "$result" = "0 FAVRTLZA" ]
|
|
|
|
result=`${tools_dir}/bufr_get -f -p isSatellite,ident b003_56.bufr`
|
|
[ "$result" = "1 not_found" ]
|
|
|
|
|
|
# Clean up
|
|
rm -f $fLog $fTmp $res_get
|