eccodes/tests/bufr_json.sh

70 lines
1.8 KiB
Bash
Raw Normal View History

#!/bin/sh
2018-01-02 11:31:02 +00:00
# Copyright 2005-2018 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
REDIRECT=/dev/null
2018-10-23 16:36:18 +00:00
# Test sample BUFR files
# -------------------------
for file in $ECCODES_SAMPLES_PATH/BUFR*.tmpl; do
${tools_dir}/bufr_dump -js $file >/dev/null
${tools_dir}/bufr_dump -ja $file >/dev/null
done
2018-08-23 08:50:04 +00:00
cd ${data_dir}/bufr
if [ $HAVE_MEMFS -eq 1 ]; then
unset ECCODES_DEFINITION_PATH
unset ECCODES_SAMPLES_PATH
2018-08-23 08:50:04 +00:00
fi
# Decide if we have the JSON verifier commandline utility
JSON_VERIF="json_xs"
JSON_CHECK=""
if command -v $JSON_VERIF >/dev/null 2>&1; then
JSON_CHECK=$JSON_VERIF
fi
2018-10-23 16:36:18 +00:00
# Test downloaded BUFR files
# -------------------------
bufr_files=`cat bufr_data_files.txt`
2018-10-23 16:36:18 +00:00
for file in ${bufr_files}; do
if [ -f "$file" ]; then
# Test the various JSON dump modes: 'structure', 'all' and 'flat'
for mode in s a f; do
rm -f ${file}.json
${tools_dir}/bufr_dump -j$mode $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
done
2018-10-23 16:36:18 +00:00
rm -f ${file}.json
fi
done
# ECC-233: Test JSON dump when selecting messages with '-w' switch
file=tropical_cyclone.bufr
2018-10-23 16:36:18 +00:00
if [ -f "$file" ]; then
for c in 1 3 1/3; do
${tools_dir}/bufr_dump -w count=$c $file 2> $REDIRECT > ${file}.json
if test "x$JSON_CHECK" != "x"; then
json_xs < ${file}.json >$REDIRECT 2> $REDIRECT
fi
done
fi
# ECC-272
2018-10-23 16:36:18 +00:00
file=aaen_55.bufr
if [ -f "$file" ]; then
${tools_dir}/bufr_dump -jf $file | grep -q -w channelRadiance
fi