1#!/bin/sh
2# (C) Copyright 2005- ECMWF.
3#
4# This software is licensed under the terms of the Apache Licence Version 2.0
5# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6#
7# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
8# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
9
10. ./include.sh
11
12# Define a common label for all the tmp files
13label="grib_polar_stereographic_test"
14tempFilter="temp.${label}.filt"
15tempGrib="temp.${label}.grib"
16tempOut="temp.${label}.out"
17
18input=$ECCODES_SAMPLES_PATH/polar_stereographic_pl_grib2.tmpl
19
20# Invoke Geoiterator
21${tools_dir}/grib_get_data $input > $tempOut
22
23${tools_dir}/grib_ls -l 60,0 $input
24
25
26# Clean up
27rm -f $tempFilter $tempGrib $tempOut
28