mirror of https://github.com/ecmwf/eccodes.git
19 lines
933 B
Modula-2
19 lines
933 B
Modula-2
# (C) Copyright 2005- ECMWF.
|
|
|
|
# Hours of observational data cut-off after reference time
|
|
unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing;
|
|
alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff;
|
|
|
|
# Minutes of observational data cut-off after reference time
|
|
unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing;
|
|
alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff;
|
|
|
|
# Indicator of unit of time range
|
|
codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump;
|
|
alias defaultStepUnits = one; # 1 means Hour. See code table 4.4
|
|
template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def";
|
|
codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy;
|
|
|
|
# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time)
|
|
signed[4] forecastTime : dump;
|