mirror of https://github.com/ecmwf/eccodes.git
Testing: METAR compare doubles
This commit is contained in:
parent
3b86b179c4
commit
82f695986a
|
@ -78,7 +78,7 @@ ${tools_dir}/metar_compare -c latitude -A 17 $temp1 $temp2
|
||||||
rm -f $temp1 $temp2
|
rm -f $temp1 $temp2
|
||||||
|
|
||||||
#----------------------------------------------------
|
#----------------------------------------------------
|
||||||
# Test: comparing with and without the -b switch
|
# Comparing with and without the -b switch
|
||||||
#----------------------------------------------------
|
#----------------------------------------------------
|
||||||
if [ $ECCODES_ON_WINDOWS -eq 0 ]; then
|
if [ $ECCODES_ON_WINDOWS -eq 0 ]; then
|
||||||
# Add wrong blocklist. Should still fail
|
# Add wrong blocklist. Should still fail
|
||||||
|
@ -91,5 +91,25 @@ if [ $ECCODES_ON_WINDOWS -eq 0 ]; then
|
||||||
${tools_dir}/metar_compare -b minute,theMessage $metar_file $fMetarTmp
|
${tools_dir}/metar_compare -b minute,theMessage $metar_file $fMetarTmp
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#----------------------------------------------------
|
||||||
|
# Compare doubles
|
||||||
|
#----------------------------------------------------
|
||||||
|
temp1=temp.$label.1.metar
|
||||||
|
temp2=temp.$label.2.metar
|
||||||
|
echo 'METAR LQMO 022350Z 09003KT 6000 FEW010 SCT035 BKN060 09/09 Q1003=' > $temp1
|
||||||
|
${tools_dir}/metar_copy -w count=1 $metar_file $temp2
|
||||||
|
set +e
|
||||||
|
${tools_dir}/metar_compare -b theMessage -f -v $temp1 $temp2 > $fLog
|
||||||
|
status=$?
|
||||||
|
set -e
|
||||||
|
[ $status -ne 0 ]
|
||||||
|
grep -q "temperature .*1 different" $fLog
|
||||||
|
grep -q "dewPointTemperature .*1 different" $fLog
|
||||||
|
|
||||||
|
# dewPointTemperature diffs: absolute diff. = 1, relative diff. = 0.111111
|
||||||
|
${tools_dir}/metar_compare -b temperature,theMessage -R dewPointTemperature=0.12 $temp1 $temp2
|
||||||
|
|
||||||
|
rm -f $temp1 $temp2
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
rm -f $fLog $fMetarTmp
|
rm -f $fLog $fMetarTmp
|
||||||
|
|
|
@ -755,15 +755,11 @@ static int compare_values(const grib_runtime_options* options, grib_handle* h1,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GRIB_TYPE_BYTES:
|
case GRIB_TYPE_BYTES:
|
||||||
if (verbose)
|
|
||||||
printf(" as bytes\n");
|
|
||||||
if (options->mode == MODE_METAR)
|
if (options->mode == MODE_METAR)
|
||||||
return 0;
|
return 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GRIB_TYPE_LABEL:
|
case GRIB_TYPE_LABEL:
|
||||||
if (verbose)
|
|
||||||
printf(" as label\n");
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue