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
|
#!/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
REDIRECT=/dev/null
label="grib_gridType_test"
tempGrib=temp.$label.grib
tempFilt=temp.$label.filt
tempText=temp.$label.txt
rm -f $tempGrib $tempFilt $tempText
${tools_dir}/grib_set -s gridType=regular_gg ${data_dir}/reduced_latlon_surface.grib1 ${tempGrib} > $REDIRECT
gridType=`${tools_dir}/grib_get -p gridType $tempGrib`
if [ $gridType != "regular_gg" ]; then
echo "ERROR: Unable to change from reduced_latlon to regular_gg: gridType=$gridType"
exit 1
fi
rm -f $tempGrib
${tools_dir}/grib_set -s gridType=reduced_gg ${data_dir}/regular_gaussian_pressure_level.grib1 ${tempGrib} > $REDIRECT
gridType=`${tools_dir}/grib_get -p gridType $tempGrib`
if [ $gridType != "reduced_gg" ]; then
echo "ERROR: Unable to change from regular_gg to reduced_gg: gridType=$gridType"
exit 1
fi
rm -f $tempGrib
# Key gridName
# ---------------
for f in $ECCODES_SAMPLES_PATH/regular_gg_ml_grib*tmpl; do
gname=`${tools_dir}/grib_get -p gridName $f`
[ "$gname" = "F32" ]
done
for f in $ECCODES_SAMPLES_PATH/reduced_gg_pl_512_grib*.tmpl; do
gname=`${tools_dir}/grib_get -p gridName $f`
[ "$gname" = "N512" ]
done
# Octahedral
grib_check_key_equals ${data_dir}/msl.octa.glob.grib1 gaussianGridName "O1280"
grib_check_key_equals ${data_dir}/msl.octa.glob.grib1 gridName "O1280"
# ECC-1638
# ---------------
cat > $tempFilt <<EOF
set tablesVersion=31;
set Ni=2;
set Nj=3;
set gridDefinitionTemplateNumber=4;
set longitude = { 11, 12 };
set latitude = {-33, -20, 0};
set values = {1.7, 6.7, -9.0, 11.1, 3.44, 5.55};
write;
EOF
${tools_dir}/grib_filter -o $tempGrib $tempFilt $ECCODES_SAMPLES_PATH/GRIB2.tmpl
if [ $HAVE_GEOGRAPHY -eq 1 ]; then
set +e
${tools_dir}/grib_ls -l 0,0 $tempGrib > $tempText 2>&1
status=$?
set -e
[ $status -ne 0 ]
grep -q "Nearest neighbour functionality is not supported for grid: Variable resolution latitude/longitude" $tempText
fi
# Clean up
rm -f $tempGrib $tempFilt $tempText
|