eccodes/tests/grib_grid_space_view.sh

117 lines
2.7 KiB
Bash
Raw Normal View History

2020-06-14 18:52:53 +00:00
#!/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
2020-06-14 18:52:53 +00:00
if [ $HAVE_GEOGRAPHY -eq 0 ]; then
exit 0
fi
2020-06-14 18:52:53 +00:00
# Define a common label for all the tmp files
label="grib_space_view_test"
2024-02-20 13:57:38 +00:00
tempFilt="temp.${label}.filt"
2022-01-08 16:50:51 +00:00
tempGrib1="temp.${label}.grib1"
tempGrib2="temp.${label}.grib2"
2020-06-14 18:52:53 +00:00
tempOut="temp.${label}.out"
2021-09-13 20:34:53 +00:00
# -----------
# GRIB2
# -----------
2020-06-14 18:52:53 +00:00
input=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
2024-02-20 13:57:38 +00:00
cat > $tempFilt <<EOF
2020-06-14 18:52:53 +00:00
set gridType="space_view";
set Nx=1900;
set Ny=900;
set dx=3622;
set dy=3610;
set Xp=764000;
set Yp=1774000;
set Nr=6610700;
set numberOfDataPoints=1710000; # 1900 x 900
set numberOfValues=1710000;
write;
EOF
# Use filter on input to create a new GRIB
2024-02-20 13:57:38 +00:00
${tools_dir}/grib_filter -o $tempGrib2 $tempFilt $input
2022-01-08 16:50:51 +00:00
if [ ! -f "$tempGrib2" ]; then
2020-06-14 18:52:53 +00:00
echo 'Failed to create output GRIB from filter' >&2
exit 1
fi
2022-01-08 16:50:51 +00:00
# Invoke Geoiterator on the newly created GRIB2 file
${tools_dir}/grib_get_data $tempGrib2 > $tempOut
2020-06-14 18:52:53 +00:00
2022-01-08 16:50:51 +00:00
${tools_dir}/grib_ls -l 50,0 $tempGrib2
2023-08-23 11:40:30 +00:00
# Invalid cases
# --------------
set +e
${tools_dir}/grib_get_data -s Nx=1 $tempGrib2 > $tempOut 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Wrong number of points" $tempOut
2023-08-23 11:40:30 +00:00
set +e
${tools_dir}/grib_get_data -sNr=missing $tempGrib2 > $tempOut 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Orthographic view (Nr missing) not supported" $tempOut
set +e
${tools_dir}/grib_get_data -sNr=0 $tempGrib2 > $tempOut 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "must be greater than zero" $tempOut
set +e
${tools_dir}/grib_get_data -s latitudeOfSubSatellitePoint=66 $tempGrib2 > $tempOut 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "satellite must be located in the equator plane" $tempOut
set +e
${tools_dir}/grib_get_data -s dx=0 $tempGrib2 > $tempOut 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Keys dx and dy must be greater than zero" $tempOut
2023-08-23 11:40:30 +00:00
rm -f $tempGrib2 $tempOut
2020-06-14 18:52:53 +00:00
2021-09-13 20:34:53 +00:00
# -----------
# GRIB1
# -----------
input=$ECCODES_SAMPLES_PATH/GRIB1.tmpl
2024-02-20 13:57:38 +00:00
cat > $tempFilt <<EOF
2021-09-13 20:34:53 +00:00
set gridType="space_view";
set Nx=550;
set Ny=550;
set dx=54;
set dy=54;
set XpInGridLengths=2750;
set YpInGridLengths=2750;
2022-01-08 16:50:51 +00:00
set Nr=6610710;
2021-09-13 20:34:53 +00:00
write;
EOF
2024-02-20 13:57:38 +00:00
${tools_dir}/grib_filter -o $tempGrib1 $tempFilt $input
2022-01-08 16:50:51 +00:00
${tools_dir}/grib_get_data $tempGrib1 > $tempOut
${tools_dir}/grib_set -s edition=2 $tempGrib1 $tempGrib2
${tools_dir}/grib_compare -e -b param $tempGrib1 $tempGrib2
2021-09-13 20:34:53 +00:00
2020-06-14 18:52:53 +00:00
# Clean up
2024-02-20 13:57:38 +00:00
rm -f $tempFilt $tempGrib1 $tempGrib2 $tempOut