#!/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. # # Tests for Pseudo-GRIB format "DIAG" . ./include.ctest.sh label="pseudo_diag_test" tempOut=temp.${label}.out tempTxt=temp.${label}.txt tempRef=temp.${label}.ref REDIRECT=/dev/null sample=$ECCODES_SAMPLES_PATH/diag.tmpl # Basic grib commands should not fail # ------------------------------------ ${tools_dir}/grib_ls $sample > $REDIRECT ${tools_dir}/grib_dump $sample > $REDIRECT count=`${tools_dir}/grib_count $sample` [ $count -eq 1 ] echo "Check setting integer keys..." # ---------------------------------- echo 'set numberOfIntegers=3; set integerValues={55, 44, 66}; write;' | ${tools_dir}/grib_filter -o $tempOut - $sample ${tools_dir}/grib_dump -p numberOfFloats,numberOfIntegers,floatValues,integerValues $tempOut | sed 1d > $tempTxt cat > $tempRef < $tempTxt cat > $tempRef < $tempTxt cat > $tempRef < $tempTxt grep -q "'E', 'C', 'M', 'W', 'F', ' '" $tempTxt # TODO encoding of characters not fully working. We are using one-byte integers instead #echo 'set numberOfCharacters=4; set charValues={"J","u","m","p"}; write;'| ${tools_dir}/grib_filter -o $tempOut - $sample #res=`${tools_dir}/grib_dump $tempOut | grep charValues | tr -d '\n' | tr -d ' '` #[ "$res" = "charValues=J;charValues=u;charValues=m;charValues=p;" ] # Clean up rm -f $tempOut $tempRef $tempTxt