eccodes/examples/extra/ens_mean.sh

16 lines
385 B
Bash
Executable File

#!/bin/sh
# --- compute the ensemble mean and compare the resulted values
# - against reference values computed with mars
. ./include.sh
input=${data_dir}/small_ensemble.grib1
reference=${data_dir}/reference_ensemble_mean.grib1
temp=temp.grib1_
${examples_dir}/ens_mean $input $temp
${tools_dir}/grib_compare -e 0.05 -c values $reference $temp > /dev/null
rm -f $temp || true