#!/bin/sh # (C) Copyright 2005- 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 # Define a common label for all the tmp files label="grib_mercator_test" tempOut="temp.${label}.out" tempFilter="temp.${label}.filt" input=${data_dir}/mercator.grib2 grib_check_key_equals $input "gridType" "mercator" ${tools_dir}/grib_get_data $input > $tempOut numlines=`wc -l $tempOut | awk '{print $1}'` [ "$numlines" = "2465" ] # 1 + numberOfDataPoints # Check other iterator-related keys cat > $tempFilter < $tempOut grep -q "Point chosen #1 index=618" $tempOut # Clean up rm -f $tempFilter $tempOut