2020-05-27 12:20:57 +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.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2020-05-27 12:20:57 +00:00
|
|
|
|
2022-07-22 16:57:02 +00:00
|
|
|
label="grib_grid_unstructured_test"
|
2020-05-27 12:20:57 +00:00
|
|
|
|
|
|
|
# Only relevant for GRIB2
|
|
|
|
sample=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
2020-06-03 15:03:37 +00:00
|
|
|
temp1=temp.1.${label}
|
|
|
|
temp2=temp.2.${label}
|
2020-05-27 12:20:57 +00:00
|
|
|
|
2020-12-16 12:56:48 +00:00
|
|
|
# Default
|
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1
|
|
|
|
grib_check_key_equals $temp1 gridName 'undefined'
|
|
|
|
|
|
|
|
# Unknown values
|
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=94,numberOfGridUsed=200 $sample $temp1
|
|
|
|
grib_check_key_equals $temp1 gridName 'unknown'
|
|
|
|
|
2021-01-07 15:20:00 +00:00
|
|
|
# Two invocations of grib_set
|
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1
|
|
|
|
${tools_dir}/grib_set -s unstructuredGridType=ORCA1 $temp1 $temp2
|
|
|
|
|
2020-12-16 12:56:48 +00:00
|
|
|
# ORCA1, W grid
|
2020-06-03 15:03:37 +00:00
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=4,numberOfGridUsed=2 $sample $temp1
|
|
|
|
grib_check_key_equals $temp1 'unstructuredGridType' 'ORCA1'
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W'
|
|
|
|
grib_check_key_equals $temp1 gridName 'ORCA1_W'
|
2020-12-16 12:56:48 +00:00
|
|
|
# ECC-1183
|
|
|
|
${tools_dir}/grib_ls -j $temp1 > $temp2
|
|
|
|
grep -q "gridName.*ORCA1_W" $temp2
|
2020-05-27 12:20:57 +00:00
|
|
|
|
2020-11-20 15:46:45 +00:00
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid,unstructuredGridType=ORCA1,unstructuredGridSubtype=W $sample $temp2
|
2020-06-03 15:03:37 +00:00
|
|
|
${tools_dir}/grib_compare $temp1 $temp2
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp2 'numberOfGridInReference,numberOfGridUsed,gridName' '4 2 ORCA1_W'
|
|
|
|
|
2020-12-04 16:07:50 +00:00
|
|
|
# Test bad values
|
|
|
|
# ---------------
|
|
|
|
${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1
|
|
|
|
set +e
|
|
|
|
${tools_dir}/grib_set -s unstructuredGridType=bad $temp1 $temp2 2>/dev/null
|
|
|
|
status1=$?
|
|
|
|
${tools_dir}/grib_set -s unstructuredGridSubtype=sad $temp1 $temp2 2>/dev/null
|
|
|
|
status2=$?
|
|
|
|
set -e
|
|
|
|
[ $status1 -ne 0 ]
|
|
|
|
[ $status2 -ne 0 ]
|
2020-06-03 15:03:37 +00:00
|
|
|
|
2020-07-22 15:35:32 +00:00
|
|
|
# Test some lat/lon parameters
|
2020-12-04 16:07:50 +00:00
|
|
|
# -----------------------------
|
2020-07-22 15:35:32 +00:00
|
|
|
${tools_dir}/grib_set -s paramId=250003 $sample $temp1
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'T'
|
2020-07-22 15:35:32 +00:00
|
|
|
|
|
|
|
${tools_dir}/grib_set -s paramId=250005 $sample $temp1
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'U'
|
2020-07-22 15:35:32 +00:00
|
|
|
|
|
|
|
${tools_dir}/grib_set -s paramId=250007 $sample $temp1
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'V'
|
2020-07-22 15:35:32 +00:00
|
|
|
|
|
|
|
${tools_dir}/grib_set -s paramId=250009 $sample $temp1
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W'
|
2020-07-22 15:35:32 +00:00
|
|
|
|
|
|
|
${tools_dir}/grib_set -s paramId=250011 $sample $temp1
|
2020-11-20 15:46:45 +00:00
|
|
|
grib_check_key_equals $temp1 'unstructuredGridSubtype' 'F'
|
2020-07-22 15:35:32 +00:00
|
|
|
|
2020-06-03 15:03:37 +00:00
|
|
|
|
|
|
|
rm -f $temp1 $temp2
|