#!/bin/sh # 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 #set -x GRIB_INFILE=${data_dir}/regular_gaussian_pressure_level_constant.grib2 REF_FILE=lamb_az_eq_area.ref # Temporary files created for this test FILTER_FILE=lamb_az_eq_area.filter GRIB_OUTFILE=lamb_az_eq_area.grib2 DATA_OUTFILE=lamb_data.txt rm -f $FILTER_FILE $GRIB_OUTFILE $DATA_OUTFILE # Create a filter cat > $FILTER_FILE<&2 exit 1 fi # Now get the data from the newly created GRIB file ${tools_dir}/grib_get_data $GRIB_OUTFILE > $DATA_OUTFILE # Compare output with reference. If the diff fails, script will immediately exit with status 1 diff $DATA_OUTFILE $REF_FILE # Clean up rm -f $FILTER_FILE $GRIB_OUTFILE $DATA_OUTFILE