2019-09-23 14:08:24 +00:00
|
|
|
#!/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
|
|
|
|
|
|
|
|
# Define a common label for all the tmp files
|
|
|
|
label="bufr_extract_headers_test"
|
|
|
|
|
|
|
|
temp1="temp.${label}.1"
|
|
|
|
temp2="temp.${label}.2"
|
|
|
|
|
|
|
|
bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt`
|
|
|
|
|
2019-09-24 14:43:27 +00:00
|
|
|
KEYS='edition,totalLength,bufrHeaderCentre,dataCategory,masterTablesVersionNumber,typicalMonth,typicalDay,rdbType,numberOfSubsets,compressedData'
|
2019-09-23 14:08:24 +00:00
|
|
|
|
|
|
|
for bf in ${bufr_files}; do
|
|
|
|
input=${data_dir}/bufr/$bf
|
2019-09-24 14:43:27 +00:00
|
|
|
$EXEC ${test_dir}/bufr_extract_headers $KEYS $input > $temp1
|
|
|
|
${tools_dir}/bufr_get -f -p $KEYS $input > $temp2
|
|
|
|
diff -w $temp1 $temp2
|
|
|
|
done
|
|
|
|
|
|
|
|
# Check for ident
|
|
|
|
files_with_ident="airc_142.bufr amda_144.bufr b004_145.bufr bssh_180.bufr temp_106.bufr profiler_european.bufr soil_7.bufr temp-land-with-substituted-values.bufr"
|
|
|
|
for bf in ${files_with_ident}; do
|
|
|
|
input=${data_dir}/bufr/$bf
|
|
|
|
# Have to remove the extra space at the end
|
|
|
|
$EXEC ${test_dir}/bufr_extract_headers ident $input |sed -e 's/ $//' > $temp1
|
|
|
|
${tools_dir}/bufr_get -f -p ident $input > $temp2
|
2019-09-23 14:08:24 +00:00
|
|
|
diff $temp1 $temp2
|
|
|
|
done
|
|
|
|
|
2019-09-24 14:43:27 +00:00
|
|
|
|
2019-09-23 14:08:24 +00:00
|
|
|
rm -f $temp1 $temp2
|