GRIB-766: ERA5: set MARS step to be endStep

This commit is contained in:
Shahram Najm 2015-06-09 11:42:16 +01:00
parent d554c8fd66
commit 4a53d7cfa2
4 changed files with 7 additions and 8 deletions

View File

@ -9,7 +9,7 @@ alias mars.date = monthlyVerificationDate;
# There was some forecast data produced incorrectly for stream=edmm with class=em
# An exception is required for backward compatibility for the wrongly encoded data
# See GRIB-422, GRIB-497
if (class is "em" || class is "e2")
if (class is "em" || class is "e2" || class is "ea")
{
alias mars.step = endStep;
}

View File

@ -3,8 +3,8 @@ meta verificationDate g1verificationdate(dataDate, dataTime, endStep) :
meta monthlyVerificationDate g1monthlydate(verificationDate) : dump,no_copy;
alias mars.date = monthlyVerificationDate;
# See GRIB-422, GRIB-497
if (class is "em" || class is "e2")
# See GRIB-422, GRIB-497, GRIB-766
if (class is "em" || class is "e2" || class is "ea")
{
alias mars.step = endStep;
}
@ -13,6 +13,5 @@ else
alias mars.step = startStep;
}
alias mars.number=perturbationNumber;

View File

@ -4,9 +4,9 @@ meta monthlyVerificationDate g1monthlydate(verificationDate) : dump,no_copy;
alias mars.date = monthlyVerificationDate;
#
# See GRIB-497
# See GRIB-497, GRIB-766
#
if (class is "em" || class is "e2")
if (class is "em" || class is "e2" || class is "ea")
{
alias mars.step = endStep;
}

View File

@ -4,9 +4,9 @@ meta monthlyVerificationDate g1monthlydate(verificationDate) : dump,no_copy;
alias mars.date = monthlyVerificationDate;
#
# See GRIB-497
# See GRIB-497, GRIB-766
#
if (class is "em" || class is "e2")
if (class is "em" || class is "e2" || class is "ea")
{
alias mars.step = endStep;
}