mirror of https://github.com/ecmwf/eccodes.git
55 lines
1.6 KiB
Bash
Executable File
55 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2005-2016 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
|
|
|
|
### Regular Lat/Lon Grid
|
|
###########################################
|
|
infile=../data/latlon.grib
|
|
outfile=out.grib_util_set_spec.grib
|
|
rm -f $outfile
|
|
|
|
${test_dir}grib_util_set_spec $infile $outfile > /dev/null
|
|
|
|
res=`${tools_dir}grib_get -p Ni,Nj,numberOfValues,bitsPerValue $outfile`
|
|
[ "$res" = "17 14 238 24" ]
|
|
|
|
# Check output file geometry
|
|
${tools_dir}grib_get_data $outfile > /dev/null
|
|
|
|
### Reduced Gaussian Grid N=32 second order packing
|
|
###########################################
|
|
infile=../data/reduced_gaussian_model_level.grib2
|
|
outfile=out.grib_util_set_spec.grib
|
|
rm -f $outfile
|
|
|
|
${test_dir}grib_util_set_spec $infile $outfile
|
|
|
|
# Check output file
|
|
grib_check_key_equals $outfile packingType grid_second_order
|
|
${tools_dir}grib_get_data $outfile > /dev/null
|
|
CHECK_TOOL="${tools_dir}grib_check_gaussian_grid"
|
|
if [ -x $CHECK_TOOL ]; then
|
|
$CHECK_TOOL $outfile
|
|
fi
|
|
|
|
### Constant field N=32
|
|
###########################################
|
|
infile=$ECCODES_SAMPLES_PATH/reduced_gg_pl_32_grib2.tmpl
|
|
rm -f $outfile
|
|
|
|
${test_dir}grib_util_set_spec $infile $outfile
|
|
grib_check_key_equals $outfile "packingType,const" "grid_simple 1"
|
|
${tools_dir}grib_get_data $outfile > /dev/null
|
|
|
|
|
|
### Clean up
|
|
rm -f $outfile
|