mirror of https://github.com/ecmwf/eccodes.git
98 lines
3.3 KiB
Modula-2
98 lines
3.3 KiB
Modula-2
# Copyright 2005-2017 ECMWF.
|
|
#
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
#
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
#
|
|
|
|
|
|
# START 1/local.98.10 ----------------------------------------------------------------------
|
|
# LOCAL 98 10
|
|
#
|
|
# localDefinitionTemplate_010
|
|
# ---------------------------
|
|
#
|
|
# Description Octet Code Ksec1 Count
|
|
# ----------- ----- ---- ----- -----
|
|
#localDefinitionNumber 41 I1 37 -
|
|
#class 42 I1 38 -
|
|
#type 43 I1 39 -
|
|
#stream 44 I2 40 -
|
|
#experimentVersionNumber 46 A4 41 -
|
|
#
|
|
#number 50 I1 42 -
|
|
#total 51 I1 43 -
|
|
#centralClusterDefinition 52 I1 44 -
|
|
#parameterIndicator 53 I1 45 -
|
|
#levelIndicator 54 I1 46 -
|
|
#northLatitudeOfDomainOfTubing 55 S3 47 -
|
|
#westLongitudeOfDomainOfTubing 58 S3 48 -
|
|
#southLatitudeOfDomainOfTubing 61 S3 49 -
|
|
#eastLongitudeOfDomainOfTubing 64 S3 50 -
|
|
#numberOfOperationalForecastTube 67 I1 51 -
|
|
#numberOfControlForecastTube 68 I1 52 -
|
|
#heightOrPressureOfLevel 69 I2 53 -
|
|
#referenceStep 71 I2 54 -
|
|
#radiusOfCentralCluster 73 I2 55 -
|
|
#ensembleStandardDeviation 75 I2 56 -
|
|
#distanceFromTubeToEnsembleMean 77 I2 57 -
|
|
#numberOfForecastsInTube 79 I1 58 -
|
|
#ensembleForecastNumbers 80 LP_I1 59 numberOfForecastsInTube
|
|
#spareToEnsureFixedLength - PADTO n/a 334
|
|
#
|
|
|
|
constant GRIBEXSection1Problem = 334 - section1Length ;
|
|
|
|
template mars_labeling "grib1/mars_labeling.def";
|
|
|
|
unsigned[1] tubeNumber : dump;
|
|
|
|
unsigned[1] totalNumberOfTubes : dump;
|
|
unsigned[1] centralClusterDefinition : dump;
|
|
|
|
unsigned[1] parameterIndicator : dump;
|
|
#alias indicatorOfParameter = parameterIndicator;
|
|
|
|
unsigned[1] levelIndicator : dump;
|
|
|
|
signed[3] northLatitudeOfDomainOfTubing : dump;
|
|
|
|
signed[3] westLongitudeOfDomainOfTubing : dump;
|
|
|
|
signed[3] southLatitudeOfDomainOfTubing : dump;
|
|
|
|
signed[3] eastLongitudeOfDomainOfTubing : dump;
|
|
|
|
unsigned[1] numberOfOperationalForecastTube : dump;
|
|
|
|
unsigned[1] numberOfControlForecastTube : dump;
|
|
|
|
unsigned[2] heightOrPressureOfLevel : dump;
|
|
|
|
unsigned[2] referenceStep : dump;
|
|
|
|
unsigned[2] radiusOfCentralCluster : dump;
|
|
|
|
unsigned[2] ensembleStandardDeviation : dump;
|
|
|
|
unsigned[2] distanceFromTubeToEnsembleMean : dump;
|
|
|
|
unsigned[1] numberOfForecastsInTube : dump;
|
|
|
|
unsigned[1] ensembleForecastNumbers[numberOfForecastsInTube] : dump;
|
|
|
|
# spareToEnsureFixedLength
|
|
padto padding_loc10_1(offsetSection1 + 334);
|
|
|
|
concept tubeDomain(unknown,"tube_domain.def",conceptsMasterDir,conceptsLocalDirAll): no_copy;
|
|
|
|
alias number = tubeNumber;
|
|
alias totalNumber = totalNumberOfTubes;
|
|
alias reference = referenceStep;
|
|
alias domain = tubeDomain;
|
|
|
|
|
|
|