mirror of https://github.com/ecmwf/eccodes.git
Scripts: Documentation
This commit is contained in:
parent
ad0e7e5bb6
commit
7bb0b83ca2
|
@ -10,9 +10,27 @@
|
||||||
# nor does it submit to any jurisdiction.
|
# nor does it submit to any jurisdiction.
|
||||||
#
|
#
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Script to generate parameter definition files for GRIB2
|
# Script to generate parameter definition files for GRIB2.
|
||||||
# Read an input TSV file which should contain parameter keys
|
# Reads an input TSV (tab-separated-value) file which should contain
|
||||||
# and generate the .def files for them
|
# the following parameter keys as columns:
|
||||||
|
# paramId
|
||||||
|
# shortName
|
||||||
|
# name
|
||||||
|
# units
|
||||||
|
# discipline
|
||||||
|
# parameterCategory
|
||||||
|
# parameterNumber
|
||||||
|
# # The following are optional keys
|
||||||
|
# typeOfFirstFixedSurface
|
||||||
|
# typeOfSecondFixedSurface
|
||||||
|
# scaledValueOfFirstFixedSurface
|
||||||
|
# scaleFactorOfFirstFixedSurface
|
||||||
|
# scaledValueOfSecondFixedSurface
|
||||||
|
# scaleFactorOfSecondFixedSurface
|
||||||
|
# typeOfStatisticalProcessing
|
||||||
|
#
|
||||||
|
# It outputs the def files: name.def paramId.def shortName.def units.def
|
||||||
|
#
|
||||||
#######################################################################
|
#######################################################################
|
||||||
$|=1;
|
$|=1;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
Loading…
Reference in New Issue