mirror of https://github.com/ecmwf/eccodes.git
58 lines
2.0 KiB
Modula-2
Executable File
58 lines
2.0 KiB
Modula-2
Executable File
# Copyright 2005-2018 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.
|
|
#
|
|
|
|
# Cluster identifier
|
|
unsigned[1] clusterIdentifier : dump ;
|
|
alias number=clusterIdentifier;
|
|
|
|
# Number of cluster to which the high resolution control belongs
|
|
unsigned[1] NH : dump;
|
|
|
|
# Number of cluster to which the low resolution control belongs
|
|
unsigned[1] NL : dump ;
|
|
|
|
# Total number of clusters
|
|
unsigned[1] totalNumberOfClusters : dump ;
|
|
alias totalNumber=totalNumberOfClusters;
|
|
|
|
# Clustering method
|
|
codetable[1] clusteringMethod ('4.8.table',masterDir,localDir) : dump;
|
|
|
|
# Northern latitude of cluster domain
|
|
unsigned[4] northernLatitudeOfClusterDomain : dump ;
|
|
|
|
# Southern latitude of cluster domain
|
|
unsigned[4] southernLatitudeOfClusterDomain : dump ;
|
|
|
|
# Eastern longitude of cluster domain
|
|
unsigned[4] easternLongitudeOfClusterDomain : dump;
|
|
|
|
# Western longitude of cluster domain
|
|
unsigned[4] westernLongitudeOfClusterDomain : dump ;
|
|
|
|
# NC - Number of forecasts in the cluster
|
|
unsigned[1] numberOfForecastsInTheCluster : dump ;
|
|
|
|
alias NC = numberOfForecastsInTheCluster;
|
|
# Scale factor of standard deviation in the cluster
|
|
unsigned[1] scaleFactorOfStandardDeviation : edition_specific ;
|
|
alias scaleFactorOfStandardDeviationInTheCluster=scaleFactorOfStandardDeviation;
|
|
|
|
# Scaled value of standard deviation in the cluster
|
|
unsigned[4] scaledValueOfStandardDeviation : dump ;
|
|
alias scaledValueOfStandardDeviationInTheCluster=scaledValueOfStandardDeviation;
|
|
|
|
# Scale factor of distance of the cluster from ensemble mean
|
|
unsigned[1] scaleFactorOfDistanceFromEnsembleMean : dump ;
|
|
|
|
# Scaled value of distance of the cluster from ensemble mean
|
|
unsigned[4] scaledValueOfDistanceFromEnsembleMean : dump ;
|
|
|
|
|