eccodes/examples/python/bufr_read_header.sh

29 lines
838 B
Bash
Raw Permalink Normal View History

2015-02-04 15:43:49 +00:00
#!/bin/sh
. ./include.sh
#-----------------------------------------------------
# Test reading the header from a BUFR
2015-02-04 15:43:49 +00:00
# file with multiple messages
#----------------------------------------------------
f=${data_dir}/bufr/syno_multi.bufr
2015-02-04 15:43:49 +00:00
fRef=$f".header.ref"
fRes=$f".header.test.p"
REDIRECT=/dev/null
# Write the values into a file and compare with reference
$PYTHON $examples_src/bufr_read_header.py $f 2> $REDIRECT > $fRes
2015-02-04 15:43:49 +00:00
#We compare output to the reference by ignoring the whitespaces
diff -w $fRef $fRes
# Now test reading the header of sample files
$PYTHON $examples_src/bufr_read_header.py ${ECCODES_SAMPLES_PATH}/BUFR3_local.tmpl
$PYTHON $examples_src/bufr_read_header.py ${ECCODES_SAMPLES_PATH}/BUFR4.tmpl
$PYTHON $examples_src/bufr_read_header.py ${ECCODES_SAMPLES_PATH}/BUFR4_local_satellite.tmpl
2015-02-04 15:43:49 +00:00
#Clean up
rm -f $fRes