2015-12-22 16:53:02 +00:00
|
|
|
#!/bin/sh
|
2019-04-15 13:44:45 +00:00
|
|
|
# Copyright 2005-2019 ECMWF.
|
2015-12-22 16:53:02 +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
|
|
|
|
|
|
|
|
# ---------------------------------------------------------
|
|
|
|
# This is the test for the JIRA issue ECC-197.
|
|
|
|
# It tests decoding a BUFR file which cannot be done unless
|
|
|
|
# we extend the definitions to include extra files
|
|
|
|
# ---------------------------------------------------------
|
2018-01-08 17:04:00 +00:00
|
|
|
label="bufr_ecc-197-test"
|
2016-07-06 09:31:09 +00:00
|
|
|
|
|
|
|
input=${data_dir}/bufr/vos308014_v3_26.bufr
|
|
|
|
if [ ! -f $input ]; then
|
|
|
|
echo "Data file $input not available"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
TEMP=${label}.temp
|
2015-12-22 16:53:02 +00:00
|
|
|
|
|
|
|
# Create a temporary directory which holds the tables etc
|
2016-07-06 09:31:09 +00:00
|
|
|
TEMP_DIR=${label}.temp-dir.$$
|
2015-12-22 16:53:02 +00:00
|
|
|
rm -rf $TEMP_DIR
|
|
|
|
mkdir -p $TEMP_DIR/definitions/bufr/tables/0/wmo/26
|
|
|
|
|
|
|
|
# Copy the definition files needed to decode BUFR file
|
|
|
|
def_files="${proj_dir}/tests/ECC-197/*"
|
|
|
|
for df in ${def_files}; do
|
|
|
|
cp -f $df $TEMP_DIR/definitions/bufr/tables/0/wmo/26
|
|
|
|
done
|
|
|
|
|
|
|
|
# Point ecCodes to look in this dir as well as standard one
|
|
|
|
MY_DEFS=`pwd`/$TEMP_DIR/definitions
|
|
|
|
export ECCODES_DEFINITION_PATH=$MY_DEFS:$ECCODES_DEFINITION_PATH
|
|
|
|
|
|
|
|
# Now decode
|
2017-02-03 14:21:24 +00:00
|
|
|
${tools_dir}/bufr_dump $input > $TEMP
|
2016-07-06 09:31:09 +00:00
|
|
|
# Ensure output JSON has all the expected contents
|
|
|
|
# After calling 'wc' and 'set', $1 will be the line count
|
|
|
|
set `wc -l $TEMP`
|
2016-07-19 14:02:27 +00:00
|
|
|
[ $1 -gt 35700 ]
|
2015-12-22 16:53:02 +00:00
|
|
|
|
|
|
|
rm -rf $TEMP_DIR
|
2016-07-06 09:31:09 +00:00
|
|
|
rm -f $TEMP
|