mirror of https://github.com/ecmwf/eccodes.git
GRIB-766: ERA5: set MARS step to be endStep
This commit is contained in:
parent
d554c8fd66
commit
4a53d7cfa2
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue