mirror of https://github.com/ecmwf/eccodes.git
57 lines
2.0 KiB
Modula-2
Executable File
57 lines
2.0 KiB
Modula-2
Executable File
# 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.
|
|
#
|
|
|
|
label "Circular cluster";
|
|
|
|
# Cluster identifier
|
|
unsigned[1] clusterIdentifier : dump;
|
|
alias number=clusterIdentifier;
|
|
|
|
# Number of cluster to which the high resolution control belongs
|
|
unsigned[1] numberOfClusterHighResolution : dump;
|
|
|
|
# Number of cluster to which the low resolution control belongs
|
|
unsigned[1] numberOfClusterLowResolution : dump;
|
|
|
|
# Total number of clusters
|
|
unsigned[1] totalNumberOfClusters : dump;
|
|
alias totalNumber=totalNumberOfClusters;
|
|
|
|
# Clustering method
|
|
codetable[1] clusteringMethod ('4.8.table',masterDir,localDir) : dump;
|
|
|
|
# Latitude of central point in cluster domain
|
|
unsigned[4] latitudeOfCentralPointInClusterDomain : dump;
|
|
|
|
# Longitude of central point in cluster domain
|
|
unsigned[4] longitudeOfCentralPointInClusterDomain : dump;
|
|
|
|
# Radius of cluster domain
|
|
unsigned[4] radiusOfClusterDomain : 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] scaleFactorOfDistanceFromEnsembleMean : dump;
|