#!/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. # # --- test grib edition 2 to 1 conversions with tigge data # --- using the new features of grib_compare that allows # --- namespace comparison . ./include.ctest.sh REDIRECT=/dev/null label="grib_tigge_conv2_test" dir="${data_dir}/tigge" temp1="temp.${label}.grib1_" temp2="temp.${label}.grib2_" if [ $ECCODES_ON_WINDOWS -eq 1 ]; then echo "$0: This test is currently disabled on Windows" exit 0 fi # --- Do I want to exclude any file pattern from the comparison ? exclusion_pattern="tcw|ssr|str|skt|cap|ci|ttr|st|sm|sd|slhf|sshf" # ECC-1744: Some very small floating-point differences shown for these blacklist="-b iDirectionIncrementInDegrees,jDirectionIncrementInDegrees" for file in ${dir}/tigge_[f-z]*.grib; do exclude=`echo $file | awk " /$exclusion_pattern/ {print \"found\";} "` if [ -z "$exclude" ]; then rm -f ${temp1} ${temp2} # 2 to 1 conversion check ${tools_dir}/grib_set -s editionNumber=1 ${file} ${temp1} ${tools_dir}/grib_compare $blacklist -P -c data:n,geography:n ${temp1} ${file} # 1 to 2 conversion check ${tools_dir}/grib_set -s editionNumber=2 ${temp1} ${temp2} ${tools_dir}/grib_compare $blacklist -P -c shortName,data:n,geography:n ${temp2} ${file} fi done rm -f ${temp1} ${temp2}