mirror of https://github.com/ecmwf/eccodes.git
GRIB2 Template 4.88: Add dump attribute and fix indentation
This commit is contained in:
parent
8ffed7170f
commit
172026edf5
|
@ -1,43 +1,43 @@
|
|||
# (C) Copyright 2005- ECMWF.
|
||||
|
||||
codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 ;
|
||||
# Method used to calculate the field value at the local time specified in section 1
|
||||
codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 : dump;
|
||||
|
||||
# n - number of Forecasts used in Local Time
|
||||
unsigned[1] numberOfForecastsUsedInLocalTime=0;
|
||||
unsigned[1] numberOfForecastsUsedInLocalTime : dump;
|
||||
|
||||
localTimeForecastList list(numberOfForecastsUsedInLocalTime)
|
||||
{
|
||||
# Year of Forecast used in Local Time
|
||||
unsigned[2] yearOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Year of Forecast used in Local Time
|
||||
unsigned[2] yearOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Month of Forecast used in Local Time
|
||||
unsigned[1] monthOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Month of Forecast used in Local Time
|
||||
unsigned[1] monthOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Day of Forecast used in Local Time
|
||||
unsigned[1] dayOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Day of Forecast used in Local Time
|
||||
unsigned[1] dayOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Hour of Forecast used in Local Time
|
||||
unsigned[1] hourOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Hour of Forecast used in Local Time
|
||||
unsigned[1] hourOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Minute of Forecast used in Local Time
|
||||
unsigned[1] minuteOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Minute of Forecast used in Local Time
|
||||
unsigned[1] minuteOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Second of Forecast used in Local Time
|
||||
unsigned[1] secondOfForecastUsedInLocalTime=0 : edition_specific;
|
||||
# Second of Forecast used in Local Time
|
||||
unsigned[1] secondOfForecastUsedInLocalTime=0 : dump, edition_specific;
|
||||
|
||||
# Indicator of unit of time for ForecastTime
|
||||
codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 ;
|
||||
# Indicator of unit of time for ForecastTime
|
||||
codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 : dump;
|
||||
|
||||
# Length of the time range over which statistical processing is done, in units defined by the previous octet
|
||||
unsigned[4] forecastTime=0 ;
|
||||
# Length of the time range over which statistical processing is done, in units defined by the previous octet
|
||||
unsigned[4] forecastTime=0 : dump;
|
||||
|
||||
# Number of time increments of Forecast used in Local Time
|
||||
unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 ;
|
||||
# Number of time increments of Forecast used in Local Time
|
||||
unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 : dump;
|
||||
|
||||
# Indicator of unit of time for the increment between the successive steps used
|
||||
codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ;
|
||||
# Indicator of unit of time for the increment between the successive steps used
|
||||
codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 : dump;
|
||||
|
||||
# Time increment between successive fields, in units defined by the previous octet
|
||||
unsigned[4] timeIncrement=0 ;
|
||||
# Time increment between successive fields, in units defined by the previous octet
|
||||
unsigned[4] timeIncrement=0 : dump;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue