eccodes/tests/set.sh

62 lines
1.5 KiB
Bash
Raw Normal View History

2013-03-25 12:04:10 +00:00
#!/bin/sh
# Copyright 2005-2016 ECMWF.
2013-03-25 12:04:10 +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.
2014-08-28 09:03:16 +00:00
#
2013-03-25 12:04:10 +00:00
# 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
infile=${data_dir}/regular_gaussian_surface.grib1
outfile=${data_dir}/set.grib1
rm -f $outfile || true
${tools_dir}grib_set -v -p levtype,centre,levtype:l,centre:l -s levtype=pl,centre=80 $infile $outfile >$REDIRECT
levtype=`${tools_dir}grib_get -p levtype $outfile`
[ $levtype = "pl" ]
centre=`${tools_dir}grib_get -p centre $outfile`
[ $centre = "cnmc" ]
levtype=`${tools_dir}grib_get -p levtype:l $outfile`
[ $levtype -eq 100 ]
centre=`${tools_dir}grib_get -p centre:l $outfile`
[ $centre -eq 80 ]
rm -f $outfile || true
2014-08-28 09:03:16 +00:00
infile=${data_dir}/regular_gaussian_surface.grib2
2013-03-25 12:04:10 +00:00
outfile=${data_dir}/set.grib2
rm -f $outfile || true
${tools_dir}grib_set -v -p levtype:l,centre:s -s levtype:l=100,centre:s=cnmc $infile $outfile >$REDIRECT
levtype=`${tools_dir}grib_get -p levtype $outfile`
[ $levtype = "pl" ]
centre=`${tools_dir}grib_get -p centre $outfile`
[ $centre = "cnmc" ]
levtype=`${tools_dir}grib_get -p levtype:l $outfile`
[ $levtype -eq 100 ]
centre=`${tools_dir}grib_get -p centre:l $outfile`
[ $centre -eq 80 ]
set +e
${tools_dir}grib_set -p levtype $infile $outfile 2> $REDIRECT > $REDIRECT
[ $? -ne 0 ]
rm -f $outfile || true