eccodes/examples/C/grib_copy_message.sh

23 lines
771 B
Bash
Raw Normal View History

#!/bin/sh
2017-01-03 11:03:48 +00:00
# Copyright 2005-2017 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
TEMP=c_grib_copy_message.grib
INPUT=${data_dir}/reduced_gaussian_pressure_level.grib1
${examples_dir}c_grib_copy_message ${INPUT} ${TEMP} > /dev/null
2017-02-03 14:21:24 +00:00
${tools_dir}/grib_compare -b hour ${INPUT} ${TEMP}
INPUT=${data_dir}/sample.grib2
${examples_dir}c_grib_copy_message ${INPUT} ${TEMP} > /dev/null
2017-02-03 14:21:24 +00:00
${tools_dir}/grib_compare -b hour ${INPUT} ${TEMP}
rm -f ${TEMP}