File: grib_element.sh

package info (click to toggle)
eccodes 2.44.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 150,256 kB
  • sloc: cpp: 163,056; ansic: 26,308; sh: 21,602; f90: 6,854; perl: 6,363; python: 5,087; java: 2,226; javascript: 1,427; yacc: 854; fortran: 543; lex: 359; makefile: 274; xml: 183; awk: 66
file content (101 lines) | stat: -rwxr-xr-x 2,767 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/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.ctest.sh

label="grib_element_test"
tempGrib=temp.${label}.grib
tempRef=temp.${label}.ref
tempText=temp.${label}.txt
tempFilt=temp.${label}.filt

input=$ECCODES_SAMPLES_PATH/reduced_gg_pl_48_grib2.tmpl

# Print the last three entries from the "pl" array
cat > $tempFilt <<EOF
    if( element(pl,0) != 20 ) {
        assert( 0 );
    }
    meta elemA element(pl, Nj - 3);
    meta elemB element(pl, Nj - 2);
    meta elemC element(pl, Nj - 1);
    meta elemZ element(pl, -1); # another way of getting the last element
    print "elemA=[elemA], elemB=[elemB], elemC=[elemC], elemZ=[elemZ]";
    set elemZ = 1099; # Set the last element, using a -ve index
EOF
${tools_dir}/grib_filter $tempFilt $input > $tempText
echo "elemA=36, elemB=25, elemC=20, elemZ=20" > $tempRef
diff $tempRef $tempText


# Invalid element indexes
cat > $tempFilt <<EOF
    meta badElem element(pl, -97);
    print "[badElem]";
EOF
set +e
${tools_dir}/grib_filter $tempFilt $input > $tempText 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Invalid element.*Value must be between 0 and 95" $tempText

cat > $tempFilt <<EOF
    meta badElem element(pl, 197);
    print "[badElem]";
EOF
set +e
${tools_dir}/grib_filter $tempFilt $input > $tempText 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Invalid element.*Value must be between 0 and 95" $tempText


# Access a double array
input=$ECCODES_SAMPLES_PATH/sh_ml_grib2.tmpl
cat > $tempFilt <<EOF
    meta elemZ element(values, -1);
    print "Last value as a double = [elemZ:d]";
EOF
${tools_dir}/grib_filter $tempFilt $input

cat > $tempFilt <<EOF
    meta badElem element(values, 100000);
    print "[badElem:d]";
EOF
set +e
${tools_dir}/grib_filter $tempFilt $input
status=$?
set -e
[ $status -ne 0 ]

# Encode a single double element in an array
input=$data_dir/sample.grib2
cat > $tempFilt <<EOF
    print "Before:  [min=] [max=]";
    transient avg1 = avg;
    transient max1 = max;
    meta elemN element(values, -1);
    assert( elemN < 301 );
    print "Last elem was: [elemN:d]";
    set elemN = 312; # Pass in an integer. Should call pack_double
    print "Last elem now: [elemN:d]";
    print "After:  [min=] [max=]";
    assert( elemN > 310 );
    assert ( avg > avg1 );
    assert ( max > max1 );
    write;
EOF
${tools_dir}/grib_filter -o $tempGrib $tempFilt $input


# Clean up
rm -f $tempRef $tempText $tempFilt $tempGrib